Index: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-padding-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-padding-expected.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-padding-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..eb9e967a6eaa8e1b91225c9e9dbd85f7c4afa55c |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-padding-expected.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<style> |
+ .outer { |
+ position: relative; |
mstensho (USE GERRIT)
2016/05/12 09:34:03
This can be simplified. It's just a ref. A simple
Deokjin Kim
2016/05/12 11:24:20
Done.
|
+ padding: 2em; |
+ width: 4em; |
+ color: black; |
+ background: black; |
+ } |
+ .inner { |
+ position: absolute; |
+ left: 0; |
+ top: 0; |
+ padding-left: 128px; |
+ } |
+</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> |