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

Unified Diff: LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty Created 6 years, 9 months 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/shapes/parsing/parsing-shape-lengths.html
diff --git a/LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html b/LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html
index bff7ddbe61e9f6dcd43f619673f41147cbb4d8ea..37f9868763f07215f456bef2f9b9dde6107c13d1 100644
--- a/LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html
+++ b/LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html
@@ -22,12 +22,12 @@ function getStyleValue(property, value) {
function testStyleValue(value, expected) {
if (expected === null)
- shouldBeNull('getStyleValue("shape-inside", "' + value + '")');
+ shouldBeNull('getStyleValue("shape-outside", "' + value + '")');
else
- shouldBeEqualToString('getStyleValue("shape-inside", "' + value + '")', expected);
+ shouldBeEqualToString('getStyleValue("shape-outside", "' + value + '")', expected);
}
function testComputedStyleValue(value, expected) {
- testShapeComputedProperty("shape-inside", value, expected);
+ testShapeComputedProperty("shape-outside", value, expected);
}
function testInvalidValue(property, value) {

Powered by Google App Engine
This is Rietveld 408576698