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

Unified Diff: third_party/WebKit/LayoutTests/animations/custom-properties/element-animate-crash.html

Issue 2521103004: Revert of Apply custom property animation (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-at-apply.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/custom-properties/element-animate-crash.html
diff --git a/third_party/WebKit/LayoutTests/animations/custom-properties/element-animate-crash.html b/third_party/WebKit/LayoutTests/animations/custom-properties/element-animate-crash.html
deleted file mode 100644
index 97a4d55b36fdf9eda1cd2fa51f8a7d428770aaf7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/custom-properties/element-animate-crash.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<div id="target"></div>
-<script>
-promise_test(() => {
- return new Promise(resolve => {
- target.animate([
- {'resize':'none'},
- {'resize':'none'},
- ], {
- duration: 1000,
- delay: 100,
- });
- target.animate([
- {'--custom-property-name':'custom-value'},
- {'--custom-property-name':'custom-value'},
- ], 1);
- // This specific combination of async behaviour is required to trigger the crash,
- // creating functions here prevents the crash. This is probably due to V8 GC
- // implementation details.
- setInterval(gc);
- setTimeout(resolve);
- });
-}, 'Do not crash in ASAN when using custom properties in element.animate()');
-</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-at-apply.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698