mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1048838 - Add mochitest for transitions and restyles. No review.
The third test fails without the patch, and passes with the patch.
This commit is contained in:
parent
96b58d1f07
commit
effdce7aca
@ -191,6 +191,7 @@ skip-if = (toolkit == 'gonk' && debug) || toolkit == 'android' #bug 775227 #debu
|
||||
[test_supports_rules.html]
|
||||
[test_system_font_serialization.html]
|
||||
[test_transitions_and_reframes.html]
|
||||
[test_transitions_and_restyles.html]
|
||||
[test_transitions_and_zoom.html]
|
||||
[test_transitions_cancel_near_end.html]
|
||||
[test_transitions_computed_values.html]
|
||||
|
48
layout/style/test/test_transitions_and_restyles.html
Normal file
48
layout/style/test/test_transitions_and_restyles.html
Normal file
@ -0,0 +1,48 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=1030993
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Test for Bug 1030993</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
<style>
|
||||
#display {
|
||||
background: blue; height: 10px; width: 0; color: black;
|
||||
transition: width linear 1s, color linear 1s;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1030993">Mozilla Bug 1030993</a>
|
||||
<p id="display"></p>
|
||||
<pre id="test">
|
||||
</pre>
|
||||
<script type="application/javascript">
|
||||
|
||||
/** Test for Bug 1030993 **/
|
||||
|
||||
function advance_clock(milliseconds) {
|
||||
SpecialPowers.DOMWindowUtils.advanceTimeAndRefresh(milliseconds);
|
||||
}
|
||||
|
||||
var p = document.getElementById("display");
|
||||
var cs = getComputedStyle(p, "");
|
||||
advance_clock(0);
|
||||
cs.width; // flush
|
||||
p.style.width = "1000px"; // start transition
|
||||
is(cs.width, "0px", "transition at 0ms"); // flush (and test)
|
||||
advance_clock(100);
|
||||
is(cs.width, "100px", "transition at 100ms"); // flush
|
||||
// restyle *and* trigger new transitions
|
||||
p.style.color = "blue";
|
||||
// flush again, at the same timestamp
|
||||
is(cs.width, "100px", "transition at 100ms, after restyle");
|
||||
|
||||
SpecialPowers.DOMWindowUtils.restoreNormalRefresh();
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user