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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/animations/animval-web-animations-flush-crash.html

Issue 2689713003: Don't clear 'web animations dirty' flag if we have no rare data (Closed)
Patch Set: Don't compute style for node that isn't in the document Created 3 years, 10 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 | third_party/WebKit/LayoutTests/svg/animations/animval-web-animations-flush-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 <style>
3 @keyframes anim { 0% { opacity: 0; } }
4 * { animation-name: anim; animation-duration: 4s; }
5 </style>
6 <p>PASS if no crash</p>
7 <script>
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
11 }
12 onload = function() {
13 let parent = document.createElement("div");
14 element = parent.appendChild(
15 document.createElementNS("http://www.w3.org/2000/svg", "marker "));
16
17 setTimeout(function() {
18 element.computedName;
fs 2017/02/13 19:16:07 This would trigger the DCHECK in Node::containingT
19 let before = performance.now();
20 while (performance.now() - before < 17)
21 ;
alancutter (OOO until 2018) 2017/02/15 04:11:45 I wonder if internals.pauseAnimations(document.tim
fs 2017/02/15 14:18:30 Sadly, no =(. (Probably because of the lifecycle u
22 element.className.animVal;
23 if (window.testRunner)
24 testRunner.notifyDone();
25 });
26 };
27 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/animations/animval-web-animations-flush-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698