Chromium Code Reviews| Index: third_party/WebKit/Source/core/paint/test_data/relative-position-inline.html |
| diff --git a/third_party/WebKit/Source/core/paint/test_data/relative-position-inline.html b/third_party/WebKit/Source/core/paint/test_data/relative-position-inline.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..da72894f67ccd8ce2b9a2508f11c14766bfe9cb8 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/paint/test_data/relative-position-inline.html |
| @@ -0,0 +1,21 @@ |
| +<style> |
| +body { |
| + margin: 0; |
| +} |
| + |
| +#rel-pos { |
| + position: relative; |
| + left: 123px; |
| + top: 456px; |
| +} |
| + |
| +#inline-block { |
| + display: inline-block; |
| + position: relative; |
| + left: 12px; |
| + top: 34px; |
| + |
| + transform: translateZ(0); |
| +} |
| +</style> |
| +<span id="rel-pos"><div id="inline-block"></div></span> |