https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d5eac06c5c6713c017d2cab4c2e2b4fda866ae75 authored by ffxbld on 13 March 2012, 01:04:46 UTC
Added FIREFOX_11_0_RELEASE FIREFOX_11_0_BUILD2 tag(s) for changeset b967d9c07377. DONTBUILD CLOSED TREE a=release
Tip revision: d5eac06
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