https://github.com/mozilla/gecko-dev
Raw File
Tip revision: af7f01cfce490ee23b821dec5aa43afda7cfb627 authored by tbirdbld on 05 October 2012, 21:06:08 UTC
Added THUNDERBIRD_16_0_RELEASE THUNDERBIRD_16_0_BUILD1 tag(s) for changeset ddb22ac6c03b. DONTBUILD CLOSED TREE a=release
Tip revision: af7f01c
test017-020.js
/* 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";
  }
}
back to top