mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=696253
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for Bug 696253</title>
|
|
<script type="application/javascript" 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=696253">Mozilla Bug 696253</a>
|
|
<div id="display">
|
|
<iframe id="iframe"></iframe>
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
"use strict";
|
|
|
|
/** Test for Bug 696253, for the 'flex' CSS shorthand property) **/
|
|
|
|
/*
|
|
* This mochitest runs in an iframe so that we can selectively turn on the
|
|
* flexbox about:config pref before its document is instantiated.
|
|
*
|
|
* See the iframe's source ("file_flexbox_flex_shorthand.html") for the actual
|
|
* test code and for more documentation.
|
|
*/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
ok(!SpecialPowers.getBoolPref("layout.css.flexbox.enabled"),
|
|
"expecting flexbox pref to be disabled by default");
|
|
|
|
SpecialPowers.setBoolPref("layout.css.flexbox.enabled", true);
|
|
document.getElementById("iframe").src = "file_flexbox_flex_shorthand.html";
|
|
|
|
function finish() {
|
|
SpecialPowers.clearUserPref("layout.css.flexbox.enabled");
|
|
SimpleTest.finish();
|
|
}
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|