mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Auto merge of #5753 - JIoJIaJIu:timeline, r=jdm
RequestAnimationFrame [Task](https://github.com/servo/servo/issues/5681) <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/5753) <!-- Reviewable:end -->
This commit is contained in:
commit
5e59e77c41
19 changed files with 315 additions and 68 deletions
5
tests/html/test_request_animation_frame.html
Normal file
5
tests/html/test_request_animation_frame.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
window.requestAnimationFrame(function (time) {
|
||||
alert("time " + time);
|
||||
});
|
||||
</script>
|
|
@ -1,6 +1,8 @@
|
|||
skip: true
|
||||
[2dcontext]
|
||||
skip: false
|
||||
[animation-timing]
|
||||
skip: false
|
||||
[dom]
|
||||
skip: false
|
||||
[domparsing]
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
[callback-invoked.html]
|
||||
type: testharness
|
||||
[requestAnimationFrame callback is invoked at least once before the timeout]
|
||||
expected: FAIL
|
Loading…
Add table
Add a link
Reference in a new issue