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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/select/menulist-emptify-option.html

Issue 2075533002: Menulist SELECT element should update layout when an OPTION content is changed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/select/menulist-emptify-option-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/forms/select/menulist-emptify-option.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select/menulist-emptify-option.html b/third_party/WebKit/LayoutTests/fast/forms/select/menulist-emptify-option.html
new file mode 100644
index 0000000000000000000000000000000000000000..3aa512d58df1ff7ede7f778a4f92850710ab2708
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/forms/select/menulist-emptify-option.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<select>
+<option id="opt">FAIL</option>
+</select>
+<script>
+testRunner.waitUntilDone();
+requestAnimationFrame(() => {
+ document.querySelector('#opt').textContent = '';
+ requestAnimationFrame(() => { testRunner.notifyDone(); });
+});
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/select/menulist-emptify-option-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698