summaryrefslogtreecommitdiffstats
path: root/layout/generic/test/frame_selection_underline.xhtml
blob: 1e4f6790bb4e0e429b014f84ab58316f505f471b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" class="willBeRemoved">
<head>
<link rel="stylesheet" type="text/css" href="frame_selection_underline.css"/>
<script type="text/javascript">
<![CDATA[

function init(aTest)
{
  var docShell = window.docShell;
  var controller =
    docShell.QueryInterface(Ci.nsIInterfaceRequestor)
            .getInterface(Ci.nsISelectionDisplay)
            .QueryInterface(Ci.nsISelectionController);

  var selections = [
    controller.SELECTION_SPELLCHECK,
    controller.SELECTION_IME_RAWINPUT,
    controller.SELECTION_IME_SELECTEDRAWTEXT,
    controller.SELECTION_IME_CONVERTEDTEXT,
    controller.SELECTION_IME_SELECTEDCONVERTEDTEXT,
  ];
  for (var i = 0; i < selections.length; i++) {
    var sel = controller.getSelection(selections[i]);
    sel.removeAllRanges();
  }

  var target = document.getElementById("target");
  target.style.fontFamily = aTest.font.family;
  target.style.fontSize = aTest.font.defaultSize;

  var range = document.createRange();
  range.selectNodeContents(target);
  controller.getSelection(aTest.selection.type).addRange(range);

  document.documentElement.removeAttribute("class");
  setTimeout(function () {
    document.documentElement.setAttribute("class", "willBeRemoved"); }, 0);
}

]]>
</script>
</head>
<body class="test">
  <div id="target"><span id="decoration">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></div>
</body>
</html>