https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ffa380b5ed1f38ebec06100dac9e9b8ae2dab6ee authored by ffxbld on 06 February 2013, 16:23:24 UTC
Added FENNEC_19_0b5_RELEASE FENNEC_19_0b5_BUILD1 tag(s) for changeset dea6d1763544. DONTBUILD CLOSED TREE a=release
Tip revision: ffa380b
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