| Index: LayoutTests/fast/css/getComputedStyle/script-tests/computed-style-page-break-inside.js
|
| diff --git a/LayoutTests/fast/css/getComputedStyle/script-tests/computed-style-page-break-inside.js b/LayoutTests/fast/css/getComputedStyle/script-tests/computed-style-page-break-inside.js
|
| index b940060773d60abf391540e34cede9e10f9ca4cd..a8e1b704279ec094a44b216efdc78d00309d40d4 100644
|
| --- a/LayoutTests/fast/css/getComputedStyle/script-tests/computed-style-page-break-inside.js
|
| +++ b/LayoutTests/fast/css/getComputedStyle/script-tests/computed-style-page-break-inside.js
|
| @@ -7,7 +7,7 @@ var child = document.createElement("div");
|
| parent.appendChild(child);
|
| document.body.appendChild(parent);
|
|
|
| -shouldBe("window.getComputedStyle(parent).getPropertyCSSValue('page-break-inside').getStringValue()", '"avoid"');
|
| -shouldBe("window.getComputedStyle(child).getPropertyCSSValue('page-break-inside').getStringValue()", '"auto"');
|
| +shouldBe("window.getComputedStyle(parent).pageBreakInside", '"avoid"');
|
| +shouldBe("window.getComputedStyle(child).pageBreakInside", '"auto"');
|
|
|
| document.body.removeChild(parent);
|
|
|