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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select-generated-content.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 .s1::before { display: table; content: counter(section); }
5 .s2::after { display: table; content: counter(section); }
6 </style>
7 <script>
8 function boom() {
9 var s1 = document.createElement('select');
10 s1.setAttribute('class', 's1');
11 document.documentElement.appendChild(s1);
12 var s2 = document.createElement('select');
13 s2.setAttribute('class', 's2');
14 document.documentElement.appendChild(s2);
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 }
18 window.onload = boom;
19 </script>
20 <head>
21 <body>PASS unless crash.</body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698