WebCore/manual-tests/inspector-document-methods-override.html
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 01:32:07 +0300
changeset 2 303757a437d3
parent 0 4f2f89ce4247
permissions -rw-r--r--
Revision: 201037 Kit: 201039

<p>This page test that using the Web Inspector's search field on a page that
overrides <tt>Document.evaluate</tt> or <tt>Document.querySelectorAll</tt>
still works.<p>

<p>To test, right-click on this page and select &ldquo;Inspect Element&rdquo;,
then type &ldquo;p&rdquo; in the search field (without the quotes). If the
search results list appears, then you have passed the test. If one or more
alert dialogs appear, you have failed the test.</p>

<script>
    function fail() { alert('FAIL') }
    document.querySelectorAll = fail;
    document.evaluate = fail;
</script>