https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d3b8a853b732b960213c09952dceeca215766d95 authored by ffxbld on 22 February 2012, 15:35:19 UTC
Added FIREFOX_11_0b4_RELEASE FIREFOX_11_0b4_BUILD1 tag(s) for changeset 0338a18c2bc8. DONTBUILD CLOSED TREE a=release
Tip revision: d3b8a85
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