The patch also adds missing newlines at the end of some files and fixes the windows linebreaks in some files. r=gerv/robcee git-svn-id: svn://10.0.0.236/trunk@225486 18797224-902f-48f8-a5cc-f745e15eee43
14 lines
547 B
JavaScript
14 lines
547 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/licenses/publicdomain/ */
|
|
|
|
// check that the second node under the document element is a PI with the
|
|
// specified .target and .data
|
|
function checkDOM(target, data) {
|
|
// assume there are no whitespace nodes in XUL
|
|
var piNode = document.documentElement.childNodes[1];
|
|
if (!piNode || piNode.nodeType != Node.PROCESSING_INSTRUCTION_NODE ||
|
|
piNode.target != target || piNode.data != data) {
|
|
document.documentElement.style.backgroundColor = "red";
|
|
}
|
|
}
|