Chromium Code Reviews| Index: LayoutTests/paint/inline/self-painting-continuation-outline.html |
| diff --git a/LayoutTests/paint/inline/self-painting-continuation-outline.html b/LayoutTests/paint/inline/self-painting-continuation-outline.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0e8f54c142d49ea97564535070510cb76361eaea |
| --- /dev/null |
| +++ b/LayoutTests/paint/inline/self-painting-continuation-outline.html |
| @@ -0,0 +1,14 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +* { |
|
leviw_travelin_and_unemployed
2015/06/18 20:40:16
Can we make this only apply to the target as well?
chrishtr
2015/06/18 21:00:41
Done.
|
| + outline: medium solid black; |
| +} |
| +#target { |
| + position: relative; |
| +} |
| +</style> |
| +<span id="target"> |
| + <div>Content 1</div> |
|
leviw_travelin_and_unemployed
2015/06/18 20:40:16
"Test passes if no assert with Slimming Paint"?
chrishtr
2015/06/18 21:00:42
It's implied that tests don't crash. This test tes
|
| + <span></span> |
| + <div>Content 2</div> |
| +</span> |