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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/html/details-replace-text.html

Issue 2670273002: Move tests for DETAILS and SUMMARY elements to html/details_summary/. (Closed)
Patch Set: Created 3 years, 10 months 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style>
4 span { display: inline-block; font-family: monospace; }
5 </style>
6 <script>
7 function test()
8 {
9 var summary = document.getElementById("s2");
10 var text = summary.previousSibling;
11 text.data = " ";
12 }
13
14 function runTest()
15 {
16 if (window.testRunner)
17 document.getElementById("run").click();
18 }
19 </script>
20 <body onload="runTest()">
21 <details open>
22 <span id="s1">Details1</span>
23 <summary>Summary</summary>
24 Text<span id="s2">Details2</span>
25 </details>
26 <input id="run" type="button" value="click" onclick="test()">
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698