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

Unified Diff: content/test/data/accessibility/iframe-coordinates.html

Issue 815463006: Separating ARIA, HTML & event AX test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/iframe-coordinates.html
diff --git a/content/test/data/accessibility/iframe-coordinates.html b/content/test/data/accessibility/iframe-coordinates.html
deleted file mode 100644
index 60521532cbdf4bbdf85ba96a2042d73a198e47e4..0000000000000000000000000000000000000000
--- a/content/test/data/accessibility/iframe-coordinates.html
+++ /dev/null
@@ -1,78 +0,0 @@
-<!doctype html>
-<!--
-@MAC-DENY:AXTitle*
-@MAC-DENY:AXValue*
-@MAC-ALLOW:position*
-@MAC-ALLOW:size*
-
-@WIN-DENY:title*
-@WIN-ALLOW:location*
-@WIN-ALLOW:size=(300, 150)
-@WIN-ALLOW:size=(300, 100)
-@WIN-ALLOW:size=(250, 50)
-@WIN-ALLOW:size=(150, 50)
-@WIN-ALLOW:IA2_STATE_EDITABLE
--->
-<html>
-<head>
-<style>
-body {
- overflow: hidden;
-}
-iframe {
- border: 0;
- margin: 0;
- padding: 0;
- overflow: hidden;
-}
-div {
- width: 300px;
- height: 150px;
-}
-</style>
-</head>
-<body style="margin: 0; padding: 0;">
-
-<div>
- <button style="margin: 25px; border: 0; width: 250px; height: 50px">
- Button
- </button>
-</div>
-
-<div>
- <button style="margin: 25px; border: 0; width: 250px; height: 50px">
- Button
- </button>
-</div>
-
-<div><iframe id="frame1" style="width: 300px; height: 100px;" scrolling="no"></iframe></div>
-
-<div><iframe id="frame2" style="width: 150px; height: 50px;" scrolling="no"></iframe></div>
-
-<script>
-var frameCode =
- '<body style="margin: 0; padding: 0;">\n' +
- '<div style="width: 300px; height: 100px;">\n' +
- ' <button style="margin: 25px; border: 0; width: 250px; height: 50px">\n' +
- ' Button\n' +
- ' </button>\n' +
- '</div>\n' +
- '</body>\n';
-
-function writeFrameCode(frame) {
- var doc = frame.contentWindow.document;
- doc.open();
- doc.write(frameCode);
- doc.close();
-}
-
-var frame1 = document.getElementById('frame1');
-writeFrameCode(frame1);
-
-var frame2 = document.getElementById('frame2');
-writeFrameCode(frame2);
-frame2.contentWindow.scrollTo(150, 50);
-</script>
-
-</body>
-</html>
« no previous file with comments | « content/test/data/accessibility/iframe.html ('k') | content/test/data/accessibility/iframe-coordinates-expected-android.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698