https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 5d23eac116b492863081dd28d58e08d36c241b6d authored by ffxbld on 05 May 2015, 02:40:21 UTC
Added FIREFOX_31_7_0esr_RELEASE FIREFOX_31_7_0esr_BUILD2 tag(s) for changeset 06188a3eed1f. DONTBUILD CLOSED TREE a=release
Tip revision: 5d23eac
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