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

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

Issue 10155016: Merge 112973 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « no previous file | LayoutTests/fast/runin/select-runin-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 Test passes if it does not crash. 3 Test passes if it does not crash.
4 <select multiple="multiple" id="select" style="-webkit-appearance: none; display : run-in;"> 4 <select multiple="multiple" id="select" style="-webkit-appearance: none; display : run-in;">
5 <option></option> 5 <option></option>
6 </select> 6 </select>
7 <div></div> 7 <div></div>
8 <script> 8 <script>
9 if (window.layoutTestController) 9 if (window.layoutTestController)
10 layoutTestController.dumpAsText(); 10 layoutTestController.dumpAsText();
11 11
12 document.body.offsetTop; 12 document.body.offsetTop;
13 document.execCommand("SelectAll"); 13 document.execCommand("SelectAll");
14 var select = document.getElementById("select"); 14 var select = document.getElementById("select");
15 select.removeChild(select.firstChild); 15 select.removeChild(select.firstChild);
16 </script> 16 </script>
17 </html> 17 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/runin/select-runin-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698