| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLLabelElement/form/test1.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLLabelElement/form/test1.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLLabelElement/form/test1.html
|
| deleted file mode 100644
|
| index 4af78c74bcca4fd62c3f4524381732728dcea5cc..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/HTMLLabelElement/form/test1.html
|
| +++ /dev/null
|
| @@ -1,46 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <script language="javascript">
|
| - function print(message)
|
| - {
|
| - var paragraph = document.createElement("p");
|
| - paragraph.appendChild(document.createTextNode(message));
|
| - document.getElementById("console").appendChild(paragraph);
|
| - }
|
| - function test()
|
| - {
|
| - if(window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| - labelInsideForm = document.getElementById("labelInsideForm");
|
| - labelNotInsideForm = document.getElementById("labelNotInsideForm");
|
| -
|
| - form = document.getElementById("form");
|
| -
|
| - if(labelInsideForm.form == form)
|
| - print("Passed");
|
| - else
|
| - print("Failed");
|
| -
|
| - if(labelNotInsideForm.form == null)
|
| - print("Passed");
|
| - else
|
| - print("Failed");
|
| - }
|
| - </script>
|
| - </head>
|
| -
|
| - <body onload="test();">
|
| - <p>This test attempts to access an HTMLLabelElement's form property. The first test accesses the form property of an label which is inside of a form. The second test accesses the form property of an label which is not inside of a form</p>
|
| -
|
| - <div id="console"></div>
|
| -
|
| - <form id="form">
|
| - <label id="labelInsideForm">
|
| - </label>
|
| - </form>
|
| -
|
| - <label id="labelNotInsideForm">
|
| - </label>
|
| - </body>
|
| -</html>
|
|
|