https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 99f52b20b0191987ea4329d9bd144332329058cb authored by ffxbld on 05 February 2015, 09:51:43 UTC
Added FENNEC_35_0_1_RELEASE FENNEC_35_0_1_BUILD1 tag(s) for changeset fcb1debde639. DONTBUILD CLOSED TREE a=release
Tip revision: 99f52b2
test_bug644768.html
<!-- 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/. -->

<!DOCTYPE html>
<html>
  <head>
    <title>Bug 644768 test</title>
    <style>
      iframe {
        width: 600px;
        height: 400px;
      }
    </style>
  </head>
  <body>
    <div id="container"></div>
  </body>
  <script>
  // Touch caret's pref is checked only when PresShell is initialized. To turn
  // off the pref, we test bug 644768 in an iframe.
  SpecialPowers.pushPrefEnv({"set": [['touchcaret.enabled', false]]}, function() {
    var iframe = document.createElement("iframe");
    iframe.src = "bug644768.html";
    document.getElementById('container').appendChild(iframe);
  });
  </script>
</html>
back to top