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

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: 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

Powered by Google App Engine
This is Rietveld 408576698