Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: LayoutTests/fast/dom/setAttribute-using-initial-input-value.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 </script> 7 </script>
8 </head> 8 </head>
9 <body> 9 <body>
10 <p id="description"> 10 <p id="description">
11 This test checks that an attribute is not removed when set to the initial value of an &lt;input&gt; tag 11 This test checks that an attribute is not removed when set to the initial value of an &lt;input&gt; tag
12 using <span style="font-family: monospace;">setAttribute()</span>. 12 using <span style="font-family: monospace;">setAttribute()</span>.
13 If the test passes, you will see a list of <span class="pass" style="font-family : monospace;">PASS</span> 13 If the test passes, you will see a list of <span class="pass" style="font-family : monospace;">PASS</span>
(...skipping 25 matching lines...) Expand all
39 shouldBe("elem.getAttribute('style')", "''"); 39 shouldBe("elem.getAttribute('style')", "''");
40 debug(""); 40 debug("");
41 </script> 41 </script>
42 <script> 42 <script>
43 elem.style.display = "none"; 43 elem.style.display = "none";
44 if (window.testRunner) 44 if (window.testRunner)
45 testRunner.notifyDone(); 45 testRunner.notifyDone();
46 </script> 46 </script>
47 </body> 47 </body>
48 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698