summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug674927.html
blob: 92af594530d1e5c67d5ebd88a165fb0edd0a15ca (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
49
50
51
52
53
54
55
<!DOCTYPE html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=674927
-->
<title>Test for Bug 674927</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
<p><span>Hello</span></p>
<div contenteditable>Contenteditable <i>is</i> splelchecked by default</div>
<textarea>Textareas are spellchekced by default</textarea>
<input value="Inputs are not spellcheckde by default">
<script>
// Test the effect of setting spellcheck on various elements
[
  "html",
  "body",
  "p",
  "span",
  "div",
  "i",
  "textarea",
  "input",
].forEach(function(query) {
  var element = document.querySelector(query);

  // First check what happens if no attributes are set
  var defaultSpellcheck;
  if (element.isContentEditable || element.tagName == "TEXTAREA") {
    defaultSpellcheck = true;
  } else {
    defaultSpellcheck = false;
  }
  is(element.spellcheck, defaultSpellcheck,
     "Default spellcheck for <" + element.tagName.toLowerCase() + ">");

  // Now try setting spellcheck on ancestors
  var ancestor = element;
  do {
    testSpellcheck(ancestor, element);
    ancestor = ancestor.parentNode;
  } while (ancestor.nodeType == Node.ELEMENT_NODE);
});

function testSpellcheck(ancestor, element) {
  ancestor.spellcheck = true;
  is(element.spellcheck, true,
     ".spellcheck on <" + element.tagName.toLowerCase() + "> with " +
     "spellcheck=true on <" + ancestor.tagName.toLowerCase() + ">");
  ancestor.spellcheck = false;
  is(element.spellcheck, false,
     ".spellcheck on <" + element.tagName.toLowerCase() + "> with " +
     "spellcheck=false on <" + ancestor.tagName.toLowerCase() + ">");
  ancestor.removeAttribute("spellcheck");
}
</script>