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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/select-remove-option-single.html

Issue 2372913002: fixed <select> element isn't updated after its single option removing. (Closed)
Patch Set: remove anchor element and adjunst some indents Created 4 years, 2 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
(Empty)
1 <!DOCTYPE html>
2 <title>Test for HTMLSelectElement.remove() on an Options object</title>
3
4 <style type="text/css">
5 select {
6 min-width: 100px;
7 }
8 </style>
9
10 <select>
11 <option selected>hello</option>
12 </select>
13
14 <script>
15 window.addEventListener('load', function() {
16 document.querySelector('option').remove();
17 });
18 </script>
OLDNEW
« no previous file with comments | « AUTHORS ('k') | third_party/WebKit/LayoutTests/fast/forms/select/select-remove-option-single-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698