mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision 8d1253647cfe3809ddf58a4ad7c9da5f26985d7e
This commit is contained in:
parent
553ff20468
commit
48c420fdb5
440 changed files with 6186 additions and 3542 deletions
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<title>Change scale to very big then back</title>
|
||||
<link rel="author" title="Xianzhu Wang" href="mailto:wangxianzhu@chromium.org">
|
||||
<link rel="help" href="https://crbug.com/1146393">
|
||||
<link rel="match" href="change-scale-wide-range-ref.html">
|
||||
<style>
|
||||
#target {
|
||||
will-change: transform;
|
||||
transform-origin: 0 0;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background: green;
|
||||
border: 10px solid blue;
|
||||
}
|
||||
</style>
|
||||
<div id="target"></div>
|
||||
<script>
|
||||
requestAnimationFrame(() => {
|
||||
requestAnimationFrame(() => {
|
||||
target.style.transform = 'scale(100)';
|
||||
requestAnimationFrame(() => {
|
||||
target.style.transform = 'scale(1)';
|
||||
document.documentElement.removeAttribute('class');
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue