blob: 1d8472425ac7e8d8217e6fb86b34e35178f4175d [file] [log] [blame]
TestPage.registerInitializer(function() {
// Having the queries in an external file, so that DOM search will not find the script when searching for values.
window.domSearchQueries = [
"body",
"<body",
"body>",
"<body>",
"<BODY>",
// Attribute names
"onload",
"ONLOAD",
// Attribute values
"runTest()",
"\"runTest()",
"\"runTest()\"",
"runTest()\"",
"RUNTEST()",
"runtest()",
// CSS selectors
".body-inside-iframe",
"*",
"BODY[ONLOAD]",
// XPath query
"/html/body",
"/html/body/@onload",
"/HTML/BODY"
];
});