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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/search/search-results-attribute.html

Issue 1483543003: No need for SubtreeStyleChange for results attribute change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fix Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/search/search-results-attribute-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/search/search-results-attribute.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/search/search-results-attribute.html b/third_party/WebKit/LayoutTests/fast/forms/search/search-results-attribute.html
new file mode 100644
index 0000000000000000000000000000000000000000..09e6e84051245d6005032e6730cd2e33fb870f14
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/forms/search/search-results-attribute.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<input type="search" id="s1"><br>
+<input type="search" id="s2" results="-10"><br>
+<input type="search" id="s3" results="0"><br>
+<input type="search" id="s4" results="10"><br>
+
+<input type="search" id="s5"><br>
+<input type="search" id="s6" results="-1"><br>
+<input type="search" id="s7" results="1"><br>
+<script>
+ document.body.offsetTop;
+ s5.setAttribute("results", "1");
+ s6.setAttribute("results", "1");
+ s7.setAttribute("results", "-1");
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/search/search-results-attribute-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698