mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 18:58:40 +09:00
13 lines
547 B
JavaScript
13 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";
|
|
}
|
|
}
|