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

Side by Side Diff: LayoutTests/transitions/transition-shape-outside-crash.html

Issue 669093002: RenderStyle operator== incorrect for shape-outside and clip-path. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/transitions/transition-shape-outside-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <p>This test passes if it does not assert or crash.</p>
3 <input autofocus ontransitionend="transitionFinished();">
4 <style>
5 input {
6 transition: ease, 50ms;
7 shape-outside: padding-box;
8 }
9 </style>
10 <script>
11 function transitionFinished() {
12 if (window.testRunner)
13 testRunner.notifyDone();
14 }
15
16 if (window.testRunner) {
17 testRunner.dumpAsText();
18 testRunner.waitUntilDone();
19 }
20 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/transitions/transition-shape-outside-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698