cinera_pre.js: Harden GetRule()
This commit is contained in:
parent
33f6186aa1
commit
20d7e82a66
|
@ -23,7 +23,7 @@ typedef struct
|
|||
version CINERA_APP_VERSION = {
|
||||
.Major = 0,
|
||||
.Minor = 8,
|
||||
.Patch = 6
|
||||
.Patch = 7
|
||||
};
|
||||
|
||||
#include <stdarg.h> // NOTE(matt): varargs
|
||||
|
|
|
@ -226,6 +226,8 @@ function GetRule(SelectorText)
|
|||
for(var StyleSheetIndex = StyleSheets.length - 1; StyleSheetIndex >= 0; --StyleSheetIndex)
|
||||
{
|
||||
var ThisSheet = StyleSheets[StyleSheetIndex];
|
||||
if(ThisSheet.href.includes(location.hostname))
|
||||
{
|
||||
var Rules = ThisSheet[cssRuleCode];
|
||||
for(var RuleIndex = Rules.length - 1; RuleIndex >= 0; --RuleIndex)
|
||||
{
|
||||
|
@ -238,6 +240,7 @@ function GetRule(SelectorText)
|
|||
}
|
||||
if(Result !== undefined) { break; }
|
||||
}
|
||||
}
|
||||
|
||||
return Result;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue