Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-padding.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-padding.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-padding.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5d35c9f1b63d3b64fcf75be22ba89efc49c41b7c |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-padding.html |
| @@ -0,0 +1,20 @@ |
| +<!DOCTYPE html> |
|
mstensho (USE GERRIT)
2016/05/12 09:34:03
The file name is misleading. This has nothing to d
Deokjin Kim
2016/05/12 11:24:20
Done.
|
| +<style> |
| + .outer { |
| + position: relative; |
| + padding: 2em; |
| + width: 4em; |
| + color: black; |
| + background: black; |
| + } |
| + .inner { |
| + position: absolute; |
| + left: 0; |
| + top: 0; |
| + padding-left: 100%; |
| + } |
| +</style> |
| +<p>The word "PASS" should be seen below, to the right of a black rectangle.</p> |
| +<div class="outer"> |
| + <div class="inner">PASS</div> |
| +</div> |