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

Unified Diff: content/test/data/accessibility/html/frame/button_scrolled.html

Issue 1552683002: Enable DumpAccessibilityTree tests to use cross-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebaseline last Android test Created 4 years, 11 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
Index: content/test/data/accessibility/html/frame/button_scrolled.html
diff --git a/content/test/data/accessibility/html/frame/button_scrolled.html b/content/test/data/accessibility/html/frame/button_scrolled.html
new file mode 100644
index 0000000000000000000000000000000000000000..fbe2336086eb7129fb4c64d000264002240240f1
--- /dev/null
+++ b/content/test/data/accessibility/html/frame/button_scrolled.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+<body style="margin: 0; padding: 0;">
+<div style="width: 300px; height: 100px;">
+ <button style="margin: 25px; border: 0; width: 250px; height: 50px">
+ Unscrolled Button
+ </button>
+</div>
+<script>
+ window.scrollTo(150, 50);
+ document.querySelector('button').textContent = 'Scrolled Button';
+</script>
+</body>
+</html>
« no previous file with comments | « content/test/data/accessibility/html/frame/button.html ('k') | content/test/data/accessibility/html/frame/empty.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698