https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 63448e5ad975fe210726bef007f93780e95ce30a authored by seabld on 01 December 2012, 03:22:14 UTC
Added tag SEAMONKEY_2_15b2_RELEASE for changeset FIREFOX_18_0b2_BUILD1. CLOSED TREE a=release
Tip revision: 63448e5
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