gecko-dev/testing/web-platform/tests/css/css-animations/idlharness.html
Stephen McGruer a5e8c83b45 Bug 1634039 [wpt PR 23314] - Mark two idlharness.html tests as timeout=long, a=testonly
Automatic update from web-platform-tests
Mark two idlharness.html tests as timeout=long

These are symptomatic of crbug.com/1047818, but to stop the pain for
sheriffs lets mark them timeout=long for now.

Bug: 1043453, 1043310
Change-Id: I9773b44e271ffe3a48f195de37c6ad917c01d24c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2171508
Commit-Queue: Luke Z <lpz@chromium.org>
Auto-Submit: Stephen McGruer <smcgruer@chromium.org>
Reviewed-by: Luke Z <lpz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#763793}

--

wpt-commits: 0583eb9233fafc882d5bc3dc925bd6e522c100b7
wpt-pr: 23314
2020-05-04 18:12:03 +00:00

48 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>css-animations IDL tests</title>
<meta name="timeout" content="long">
<link rel="help" href="https://drafts.csswg.org/css-animations/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/WebIDLParser.js"></script>
<script src="/resources/idlharness.js"></script>
</head>
<body>
<div id="log"></div>
<style>
@keyframes test {
from { top: 0px; }
to { top: 1px; }
}
</style>
<script>
'use strict';
idl_test(
['css-animations'],
['html', 'dom', 'cssom'],
idl_array => {
try {
window.keyframes = document.styleSheets[0].cssRules[0];
} catch (e) {
// Surfaced in idlharness.js's test_object below.
}
idl_array.add_objects({
AnimationEvent: ['new AnimationEvent("animationstart")'],
CSSKeyframesRule: ['keyframes'],
CSSKeyframeRule: ['keyframes.cssRules[0]'],
});
}
);
</script>
</body>
</html>