summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/parser/parent-of-script-before-head.html
blob: 83926c4e9cd3f588cbd55d2ee7c0db0d964c5e48 (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

if (document.getElementsByTagName("script")[0].parentNode.tagName.toUpperCase() == "HEAD")
    document.write("PASS")
else
    document.write("FAIL")
</script>