properties-value-inherit-001.html (7519B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Transitions Test: transitioning inherited property values</title> 6 <meta name="timeout" content="long"> 7 <meta name="assert" content="Test checks that inherited property values that are transitioned on a parent element don't start a transition"> 8 <link rel="help" title="3. Starting of transitions" href="http://www.w3.org/TR/css3-transitions/#starting"> 9 <link rel="author" title="Rodney Rehm" href="http://rodneyrehm.de/en/"> 10 <meta name="flags" content="dom "> 11 12 <script src="/resources/testharness.js" type="text/javascript"></script> 13 <script src="/resources/testharnessreport.js" type="text/javascript"></script> 14 15 <script src="./support/vendorPrefix.js" type="text/javascript"></script> 16 <script src="./support/helper.js" type="text/javascript"></script> 17 <script src="./support/runParallelAsyncHarness.js" type="text/javascript"></script> 18 <script src="./support/generalParallelTest.js" type="text/javascript"></script> 19 <script src="./support/properties.js" type="text/javascript"></script> 20 21 <style type="text/css"> 22 #offscreen { 23 position: absolute; 24 top: -100000px; 25 left: -100000px; 26 width: 100000px; 27 height: 100000px; 28 } 29 </style> 30 </head> 31 <body> 32 <!-- required by testharnessreport.js --> 33 <div id="log"></div> 34 <!-- elements used for testing --> 35 <div id="fixture" class="fixture"> 36 <div class="container"> 37 <div class="transition">Text sample</div> 38 </div> 39 </div> 40 <div id="offscreen"></div> 41 42 <!-- 43 SEE ./support/README.md for an abstract explanation of the test procedure 44 http://test.csswg.org/source/contributors/rodneyrehm/submitted/css3-transitions/README.md 45 --> 46 47 <script> 48 // http://www.w3.org/TR/css3-transitions/#starting 49 // Implementations also must not start a transition when the computed value changes because 50 // it is inherited (directly or indirectly) from another element that is transitioning the same property. 51 52 // this test takes its time, give it a minute to run 53 var timeout = 60000; 54 setup({timeout: timeout}); 55 56 var tests = getPropertyTests(); 57 // for testing, limit to a couple of iterations 58 // tests = tests.slice(10, 30); 59 // or filter using one of: 60 // tests = filterPropertyTests(tests, "background-color color(rgba)"); 61 // tests = filterPropertyTests(tests, ["background-color color(rgba)", ...]); 62 // tests = filterPropertyTests(tests, /^background-color/); 63 64 // general transition-duration 65 var duration = '2s'; 66 67 runParallelAsyncHarness({ 68 // array of test data 69 tests: tests, 70 // the number of tests to run in parallel 71 testsPerSlice: 50, 72 // milliseconds to wait before calling teardown and ending test 73 duration: parseFloat(duration) * 1000, 74 // prepare individual test 75 setup: function(data, options) { 76 // clone and overwrite initial styles to be 77 // applied to #transition 78 var inherited = extend({}, data.from); 79 inherited[data.property] = 'inherit'; 80 81 var styles = { 82 // as we're testing inheritance, #fixture is our new parent 83 '.fixture': data.parentStyle, 84 // all styles including transition apply to to #container so they 85 // can inherit down to #transition 86 '.container': extend({}, data.parentStyle, data.from), 87 '.container.to': data.to, 88 '.container.how': {transition: addVendorPrefix(data.property) + ' ' + duration + ' linear 0s'}, 89 // #transition only inherits and listens for transition events 90 '.transition': inherited, 91 '.transition.to' : {}, 92 '.transition.how' : {transition: addVendorPrefix(data.property) + ' ' + duration + ' linear 0s'} 93 }; 94 95 generalParallelTest.setup(data, options); 96 generalParallelTest.addStyles(data, options, styles); 97 }, 98 // cleanup after individual test 99 teardown: generalParallelTest.teardown, 100 // invoked prior to running a slice of tests 101 sliceStart: generalParallelTest.sliceStart, 102 // invoked after transitions have started 103 transitionsStarted: generalParallelTest.transitionsStarted, 104 // invoked after running a slice of tests 105 sliceDone: generalParallelTest.sliceDone, 106 // test cases, make them as granular as possible 107 cases: { 108 // test property values while transitioning 109 // values.start kicks off a transition 110 'values': { 111 // run actual test, assertions can be used here! 112 start: function(test, data, options) { 113 // identify initial and target values 114 generalParallelTest.getStyle(data); 115 // make sure values differ, if they don't, the property could most likely not be parsed 116 assert_not_equals(data.transition.from, data.transition.to, "initial and target values may not match"); 117 // kick off the transition 118 generalParallelTest.startTransition(data); 119 120 // make sure we didn't get the target value immediately. 121 // If we did, there wouldn't be a transition! 122 var current = data.transition.computedStyle(data.property); 123 assert_not_equals(current, data.transition.to, "must not be target value after start"); 124 }, 125 done: function(test, data, options) { 126 // make sure the property's value were neither initial nor target while transitioning 127 test.step(generalParallelTest.assertIntermediateValuesFunc(data, 'transition')); 128 } 129 }, 130 // test TransitionEnd events 131 'events': { 132 done: function(test, data, options) { 133 // make sure there were no events on parent 134 test.step(generalParallelTest.assertExpectedEventsFunc(data, 'container', addVendorPrefix(data.property) + ":" + duration)); 135 // make sure we got the event for the tested property only 136 test.step(generalParallelTest.assertExpectedEventsFunc(data, 'transition', "")); 137 } 138 } 139 }, 140 // called once all tests are done 141 done: generalParallelTest.done 142 }); 143 </script> 144 </body> 145 </html>