Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: LayoutTests/fast/css/getComputedStyle/script-tests/computed-style-page-break-inside.js

Issue 703323002: Continue removing testing of getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698