| Index: webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document.html
|
| ===================================================================
|
| --- webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document.html (revision 12664)
|
| +++ webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document.html (working copy)
|
| @@ -1,27 +0,0 @@
|
| -<HTML>
|
| -
|
| -<script>
|
| - if (window.layoutTestController)
|
| - layoutTestController.dumpAsText();
|
| -</script>
|
| -
|
| - <BODY>
|
| - <p>This tests that an old Safari extension, HTMLIFrameElement.document.
|
| -If HTMLIFrameElement.document exists, it should be an alias of HTMLIFrameElement.contentDocument. </p>
|
| -
|
| - <p>If the test pass, it should display PASSED after the the iframe box</p>
|
| - <iframe id='iframe_'></iframe>
|
| - <div id='console'>Text should be replaced on success</div>
|
| -
|
| - </BODY>
|
| -
|
| -<script>
|
| - var iframe = document.getElementById('iframe_');
|
| - var console = document.getElementById('console');
|
| - var txt = 'This test: PASSED';
|
| - if (iframe.document && iframe.document !== iframe.contentWindow.document)
|
| - txt = 'This test: FAILED!!!';
|
| - console.innerHTML = txt;
|
| -</script>
|
| -
|
| -</HTML>
|
|
|