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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select-dirty-parent-pref-widths.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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5 function go() {
6 document.getElementById('sel1').style.display = '';
7
8 if (window.testRunner)
9 window.testRunner.notifyDone();
10 }
11
12 function main() {
13 if (window.testRunner)
14 window.testRunner.waitUntilDone();
15 setTimeout(go, 0);
16 }
17 </script>
18 </head>
19 <body onload="main();">
20 <table border='1'>
21 <tr>
22 <td><select id="sel1" style="display: none;"><option label="test"></sele ct></td>
23 </tr>
24 </table>
25
26 <p>The select element in the table above must not spill outside of the table .</p>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698