| Index: third_party/WebKit/LayoutTests/paint/invalidation/iframe-rounding-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/iframe-rounding.html b/third_party/WebKit/LayoutTests/paint/invalidation/iframe-rounding-expected.html
|
| similarity index 52%
|
| copy from third_party/WebKit/LayoutTests/paint/invalidation/iframe-rounding.html
|
| copy to third_party/WebKit/LayoutTests/paint/invalidation/iframe-rounding-expected.html
|
| index 5337f402b42d52438cd3b9038f26904ffe909d7e..fa51b6f307362748c82737f1df85e7a61bb9efd9 100644
|
| --- a/third_party/WebKit/LayoutTests/paint/invalidation/iframe-rounding.html
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/iframe-rounding-expected.html
|
| @@ -1,15 +1,8 @@
|
| <!DOCTYPE html>
|
| -<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
|
| <!-- The div within the iframe is at 0.5px from the iframe bounds, and the div containing the iframe is at 0.5px from the top-left of the screen.
|
| This test checks that the latter 0.5px is rounded to 1 before being added to the 0.5px and then rounded up again to an invalidation rect. This is
|
| because iframes are painted in rounded-int coordinates.
|
| -->
|
| <div style="position: relative; left: 0.5px; margin: 0">
|
| - <iframe id='iframe' srcdoc="<div id='target' style='position: relative; background: lightblue; width: 100px; height: 100px; left: 0.5px'></div>"></iframe>
|
| + <iframe id='iframe' srcdoc="<div style='position: relative; background: lightgray; width: 100px; height: 100px; left: 0.5px'></div>"></iframe>
|
| </div>
|
| -<script>
|
| -onload = runRepaintTest;
|
| -function repaintTest() {
|
| - iframe.contentDocument.querySelector('#target').style.background = 'lightgray';
|
| -}
|
| -</script>
|
|
|