2015-02-01 10:29:00 -08:00
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2011-04-26 05:30:17 -07:00
|
|
|
|
2015-02-01 10:29:00 -08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Bug 648573 test</title>
|
|
|
|
<style>
|
|
|
|
iframe {
|
|
|
|
width: 600px;
|
|
|
|
height: 400px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="container"></div>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
// Touch/Selection caret's pref is checked only when PresShell is initialized.
|
|
|
|
// To turn off the pref, we test bug 648573 in an iframe.
|
|
|
|
SpecialPowers.pushPrefEnv({"set": [['touchcaret.enabled', false]]}, function() {
|
|
|
|
SpecialPowers.pushPrefEnv({"set": [['selectioncaret.enabled', false]]}, function() {
|
|
|
|
var iframe = document.createElement("iframe");
|
|
|
|
iframe.src = "bug648573.html";
|
|
|
|
document.getElementById('container').appendChild(iframe);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2011-04-26 05:30:17 -07:00
|
|
|
</html>
|