https://github.com/mozilla/gecko-dev
Raw File
Tip revision: edc73188e280052f55faffd89ec10389b0b6641d authored by seabld on 29 December 2011, 05:22:23 UTC
Added tag SEAMONKEY_2_7b2_RELEASE for changeset FIREFOX_10_0b2_BUILD1. CLOSED TREE a=release
Tip revision: edc7318
test006-007.js
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/  */

function checkDOM(target, data) {
  // assuming whitespace and the XML declaration are not in the DOM.
  var piNode = document.firstChild;
  if (!piNode || piNode.nodeType != Node.PROCESSING_INSTRUCTION_NODE ||
      piNode.target != target || piNode.data != data) {
    document.documentElement.style.backgroundColor = "red";
  }
}
back to top