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

Unified Diff: content/test/data/accessibility/css/inline-position-relative.html

Issue 2955303002: Bounding boxes in the accessibility tree should always be relative to a box. (Closed)
Patch Set: Created 3 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
Index: content/test/data/accessibility/css/inline-position-relative.html
diff --git a/content/test/data/accessibility/css/inline-position-relative.html b/content/test/data/accessibility/css/inline-position-relative.html
new file mode 100644
index 0000000000000000000000000000000000000000..c056364d3e8bf494620e78d7b369f897f96920f3
--- /dev/null
+++ b/content/test/data/accessibility/css/inline-position-relative.html
@@ -0,0 +1,26 @@
+<!--
+@BLINK-ALLOW:pageLocation*
+-->
+<!DOCTYPE html>
+<html>
+<head>
+ <style>
+ body {
+ padding: 0;
+ margin: 0;
+ }
+ .before {
+ display: inline-block;
+ width: 100px;
+ }
+ .after {
+ position: relative;
+ }
+ </style>
+</head>
+<body>
+ <div>
+ <span class="before">Before</span><span class="after">After</span>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698