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

Unified Diff: LayoutTests/transitions/shape-transition.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/transitions/shape-transition.html
diff --git a/LayoutTests/transitions/shape-transition.html b/LayoutTests/transitions/shape-transition.html
index dd09ebb813be92ff4d18fb2de0dd068b0b02fd3b..f5417abeebbe91afc592bc525abb8eb91ba2a24b 100644
--- a/LayoutTests/transitions/shape-transition.html
+++ b/LayoutTests/transitions/shape-transition.html
@@ -7,15 +7,13 @@
height: 100px;
width: 100px;
background-color: blue;
- shape-inside: polygon(nonzero, 30px 30px);
shape-outside: polygon(nonzero, 30px 30px);
- transition-property: shape-inside, shape-outside;
+ transition-property: shape-outside;
transition-duration: 1s;
transition-timing-function: linear;
}
#box.changed {
- shape-inside: polygon(nonzero, 50px 50px);
shape-outside: polygon(nonzero, 50px 50px);
}
</style>
@@ -25,7 +23,6 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
[0.5, 'box', 'shape-outside', 'polygon(40px 40px)', 1],
- [0.5, 'box', 'shape-inside', 'polygon(40px 40px)', 1],
];
function setupTest()

Powered by Google App Engine
This is Rietveld 408576698