| Index: third_party/WebKit/LayoutTests/fast/hidpi/border-background-align-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/hidpi/border-background-align-expected.html b/third_party/WebKit/LayoutTests/fast/hidpi/border-background-align-expected.html
|
| index 8360904fefbdddad7090e862e04e052adc808b1c..8aa2874247ed3ad12a374c68281a573c12d0b19a 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/hidpi/border-background-align-expected.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/hidpi/border-background-align-expected.html
|
| @@ -1,37 +1,25 @@
|
| <!DOCTYPE html>
|
| -<head>
|
| <style>
|
| -.d1 {
|
| - position: absolute;
|
| - left: 10.5px;
|
| - width: 100px;
|
| - height: 100px;
|
| - border: 1px solid green;
|
| -}
|
| -
|
| -.d2 {
|
| - background-color: green;
|
| - width: 100%;
|
| - height: 100%;
|
| -}
|
| -</style>
|
| -</head>
|
| -
|
| -<body onload="startTest()">
|
| - <div class="d1"><div class="d2"></div></div>
|
| -
|
| -
|
| - <script>
|
| - function startTest() {
|
| - if (window.testRunner) {
|
| - testRunner.waitUntilDone();
|
| - testRunner.setBackingScaleFactor(2, finishTest);
|
| - }
|
| + .d1 {
|
| + position: absolute;
|
| + left: 10.5px;
|
| + width: 100px;
|
| + height: 100px;
|
| + border: 1px solid green;
|
| + }
|
| + .d2 {
|
| + background-color: green;
|
| + width: 100%;
|
| + height: 100%;
|
| }
|
| -
|
| +</style>
|
| +<div class="d1"><div class="d2"></div></div>
|
| +<script>
|
| function finishTest() {
|
| setTimeout(function() { testRunner.notifyDone() }, 0);
|
| }
|
| - </script>
|
| -</body>
|
| -
|
| + if (window.testRunner) {
|
| + testRunner.waitUntilDone();
|
| + testRunner.setBackingScaleFactor(2, finishTest);
|
| + }
|
| +</script>
|
|
|