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

Side by Side Diff: LayoutTests/fast/runin/select-runin.html

Issue 53373003: Remove display:run-in as per https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/_tHSX… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 Test passes if it does not crash.
4 <select multiple="multiple" id="select" style="-webkit-appearance: none; display : run-in;">
5 <option></option>
6 </select>
7 <div></div>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11
12 document.body.offsetTop;
13 document.execCommand("SelectAll");
14 var select = document.getElementById("select");
15 select.removeChild(select.firstChild);
16 </script>
17 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/runin/runin-table-before-child-expected.txt ('k') | LayoutTests/fast/runin/select-runin-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698