forked from mirrors/gecko-dev
Automatic update from web-platform-tests WPT/BGPT: Add animation stop and set time tests, make css-animations tests threaded. This patch does a couple of things: 1. Adds a test to test opacity and transform animations being paused with time explicitly set. 2. Adds a virtual threaded test suite for css-animations (adds ~57 new tests). R=wangxianzhu@chromium.org, chrishtr@chromium.org Change-Id: Ica53a46f1efba38537dad29dc0a99bbf57892808 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1569348 Commit-Queue: vmpstr <vmpstr@chromium.org> Reviewed-by: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#651356} -- wpt-commits: 7e98f7c6953f824080bb78c289d5b63edbd4b6f7 wpt-pr: 16364
17 lines
291 B
HTML
17 lines
291 B
HTML
<!doctype html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
|
|
<style>
|
|
#target {
|
|
width: 50px;
|
|
height: 50px;
|
|
background-color: green;
|
|
transform: translate(500px);
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="target"></div>
|
|
</body>
|
|
</html>
|
|
|