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

Side by Side Diff: ManualTests/select-delete-item.html

Issue 966883002: renderer/RenderMenuList.* -> layout/LayoutMenuList.* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove OWNERS, allowing Source/core/rendering to be deleted. Created 5 years, 9 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>RenderMenuList::itemStyle Select Element Crash</title> 3 <title>LayoutMenuList::itemStyle Select Element Crash</title>
4 <script> 4 <script>
5 function removeItem() { 5 function removeItem() {
6 var select = document.getElementById("dropDown"); 6 var select = document.getElementById("dropDown");
7 select.removeChild(document.getElementsByTagName("option")[2]); 7 select.removeChild(document.getElementsByTagName("option")[2]);
8 } 8 }
9 </script> 9 </script>
10 </head> 10 </head>
11 <body> 11 <body>
12 <select id="dropDown" onfocus="setTimeout('removeItem();', 2000);"> 12 <select id="dropDown" onfocus="setTimeout('removeItem();', 2000);">
13 <option>Option 1</option> 13 <option>Option 1</option>
14 <option>Option 2</option> 14 <option>Option 2</option>
15 <option>Option 3</option> 15 <option>Option 3</option>
16 </select> 16 </select>
17 <p>This is a test for bug <a href="http://webkit.org/b/34182">34182</a> Cras h in WebKit!WebCore::RenderMenuList::itemStyle. 17 <p>This is a test for bug <a href="http://webkit.org/b/34182">34182</a> Cras h in WebKit!WebCore::LayoutMenuList::itemStyle.
18 Once the select gets focus, in 2 seconds it will delete an item. This test p asses 18 Once the select gets focus, in 2 seconds it will delete an item. This test p asses
19 if you have the select open when it deletes an item, and doesn't crash.</p> 19 if you have the select open when it deletes an item, and doesn't crash.</p>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW
« no previous file with comments | « LayoutTests/platform/win/virtual/slimmingpaint/fast/block/margin-collapse/103-expected.txt ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698