gecko-dev/layout/style/test/test_webkit_flex_display.html
Daniel Holbert df03876416 Bug 1556855 part 2: Update tests to assume that 'layout.css.prefixes.webkit' is already true. r=mats
(The pref is about to be removed, but even before its removal, it defaults to
'true' so these tests don't need to bother setting/checking it.)

Differential Revision: https://phabricator.services.mozilla.com/D33805

--HG--
extra : moz-landing-system : lando
2019-06-05 18:22:39 +00:00

47 lines
1.2 KiB
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1274096
-->
<head>
<title>Test for Bug 1274096</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1274096">Mozilla Bug 1274096</a>
<div id="content" style="display: none">
<div id="testElem"></div>
</div>
<script type="text/javascript">
</script>
<pre id="test">
<script class="testbody" type="application/javascript">
/** Test for Bug 1274096 **/
SimpleTest.waitForExplicitFinish();
runTest();
function runTest() {
testValue("display", "-webkit-flex", "flex");
testValue("display", "-webkit-inline-flex", "inline-flex");
SimpleTest.finish();
}
function testValue(propName, specifiedVal, serializedVal) {
var testElem = document.getElementById("testElem");
testElem.style[propName] = specifiedVal;
is(testElem.style[propName], serializedVal,
`CSS '${propName}:${specifiedVal} should serialize as '${serializedVal}'`);
is(window.getComputedStyle(testElem)[propName], serializedVal,
`CSS 'display:${specifiedVal} should compute to '${serializedVal}'`);
}
</script>
</pre>
</body>
</html>