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

Side by Side 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, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 @BLINK-ALLOW:pageLocation*
3 -->
4 <!DOCTYPE html>
5 <html>
6 <head>
7 <style>
8 body {
9 padding: 0;
10 margin: 0;
11 }
12 .before {
13 display: inline-block;
14 width: 100px;
15 }
16 .after {
17 position: relative;
18 }
19 </style>
20 </head>
21 <body>
22 <div>
23 <span class="before">Before</span><span class="after">After</span>
24 </div>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698