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

Side by Side Diff: LayoutTests/transitions/background-webkit-mask-crash.html

Issue 38573005: Web Animations CSS: Fix crash when transitioning background or mask properties (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed passing tests from TestExpectations Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #test {
4 transition: background, -webkit-mask 1s;
5 }
6 </style>
7 <div id="test"></div>
8 <p>This tests a crash that was occuring when a transition was targeting backgrou nd or -webkit-mask properties on an element that did not have any style specifie d for those properties. This test passes if it does not crash.</p>
9 <script>
10 if (window.testRunner) {
11 testRunner.dumpAsText();
12 testRunner.waitUntilDone();
13 }
14 setTimeout(function() {
15 test.style.backgroundColor = 'green';
16 setTimeout(function() {
17 if (window.testRunner)
18 testRunner.notifyDone();
19 }, 0);
20 }, 0);
21 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698