mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
140 lines
6 KiB
HTML
140 lines
6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Transitions Test: Not Transitioning within detached element</title>
|
|
<meta name="assert" content="Test checks that transitions are NOT run within detached elements">
|
|
<link rel="help" title="2. Transitions" href="http://www.w3.org/TR/css3-transitions/#transitions">
|
|
<link rel="author" title="Rodney Rehm" href="http://rodneyrehm.de/en/">
|
|
<meta name="flags" content="dom">
|
|
|
|
<script src="/resources/testharness.js" type="text/javascript"></script>
|
|
<script src="/resources/testharnessreport.js" type="text/javascript"></script>
|
|
|
|
<script src="./support/vendorPrefix.js" type="text/javascript"></script>
|
|
<script src="./support/helper.js" type="text/javascript"></script>
|
|
<script src="./support/runParallelAsyncHarness.js" type="text/javascript"></script>
|
|
<script src="./support/generalParallelTest.js" type="text/javascript"></script>
|
|
<script src="./support/properties.js" type="text/javascript"></script>
|
|
|
|
<style type="text/css">
|
|
#offscreen {
|
|
position: absolute;
|
|
top: -100000px;
|
|
left: -100000px;
|
|
width: 100000px;
|
|
height: 100000px;
|
|
}
|
|
</style>
|
|
|
|
<script id="metadata_cache">/*
|
|
{
|
|
"transition within detached container / values": {},
|
|
"transition within detached container / events": {}
|
|
}
|
|
*/</script>
|
|
</head>
|
|
<body>
|
|
<!-- required by testharnessreport.js -->
|
|
<div id="log"></div>
|
|
<!-- elements used for testing -->
|
|
<div id="fixture" class="fixture">
|
|
<div class="container">
|
|
<div class="transition">Text sample</div>
|
|
</div>
|
|
</div>
|
|
<div id="off-screen"></div>
|
|
|
|
<!--
|
|
SEE ./support/README.md for an abstract explanation of the test procedure
|
|
http://test.csswg.org/source/contributors/rodneyrehm/submitted/css3-transitions/README.md
|
|
-->
|
|
|
|
<script>
|
|
|
|
// this test takes its time, give it a minute to run
|
|
var timeout = 60000;
|
|
setup({timeout: timeout});
|
|
|
|
var tests = [
|
|
{
|
|
name: "transition within detached container",
|
|
property: 'background-color',
|
|
flags: {},
|
|
from: {'background-color': 'red'},
|
|
to: {'background-color': 'green'}
|
|
}
|
|
];
|
|
|
|
// general transition-duration
|
|
var duration = '0.5s';
|
|
|
|
runParallelAsyncHarness({
|
|
// array of test data
|
|
tests: tests,
|
|
// the number of tests to run in parallel
|
|
testsPerSlice: 1,
|
|
// milliseconds to wait before calling teardown and ending test
|
|
duration: parseFloat(duration) * 1000,
|
|
// the global suite timeout
|
|
timeout: timeout,
|
|
// prepare individual test
|
|
setup: function(data, options) {
|
|
var styles = {
|
|
'.fixture': {},
|
|
|
|
'.container': data.parentStyle,
|
|
'.container.to': {},
|
|
'.container.how': {},
|
|
|
|
'.transition': data.from,
|
|
'.transition.to' : data.to,
|
|
'.transition.how' : {transition: 'all ' + duration + ' linear 0s'}
|
|
};
|
|
|
|
generalParallelTest.setup(data, options);
|
|
generalParallelTest.addStyles(data, options, styles);
|
|
},
|
|
// cleanup after individual test
|
|
teardown: generalParallelTest.teardown,
|
|
// invoked prior to running a slice of tests
|
|
sliceStart: generalParallelTest.sliceStart,
|
|
// invoked after running a slice of tests
|
|
sliceDone: generalParallelTest.sliceDone,
|
|
// test cases, make them as granular as possible
|
|
cases: {
|
|
// test property values while transitioning
|
|
// values.start kicks off a transition
|
|
'values': {
|
|
// run actual test, assertions can be used here!
|
|
start: function(test, data, options) {
|
|
// identify initial and target values
|
|
generalParallelTest.getStyle(data);
|
|
// make sure values differ, if they don't, the property could most likely not be parsed
|
|
assert_not_equals(data.transition.from, data.transition.to, "initial and target values may not match");
|
|
// detach transitioning elements
|
|
data.fixture.parentNode.removeChild(data.fixture);
|
|
// kick off the transition
|
|
generalParallelTest.startTransition(data);
|
|
},
|
|
done: function(test, data, options) {
|
|
// make sure there were no intermediate values
|
|
assert_equals(data.transition.values.length, 2, "no intermediate values");
|
|
}
|
|
},
|
|
// test TransitionEnd events
|
|
'events': {
|
|
done: function(test, data, options) {
|
|
// make sure there were no events on parent
|
|
test.step(generalParallelTest.assertExpectedEventsFunc(data, 'container', ""));
|
|
// make sure we got the event for the tested property only
|
|
test.step(generalParallelTest.assertExpectedEventsFunc(data, 'transition', ""));
|
|
}
|
|
}
|
|
},
|
|
// called once all tests are done
|
|
done: generalParallelTest.done
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|