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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/absolute-child-with-percent-padding-inside-relative-parent.html

Issue 1876123002: Absolute positioned child with percent should include containing block padding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modify commit message Created 4 years, 7 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 <!DOCTYPE html>
2 <style>
3 .outer {
4 position: relative;
5 padding: 2em;
6 width: 4em;
7 background: black;
8 }
9 .inner {
10 position: absolute;
11 left: 0;
12 top: 0;
13 padding-left: 100%;
14 }
15 </style>
16 <p>The word "PASS" should be seen below, to the right of a black rectangle.</p>
17 <div class="outer">
18 <div class="inner">PASS</div>
19 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/absolute-child-with-percent-padding-inside-relative-parent-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698