-
Notifications
You must be signed in to change notification settings - Fork 0
/
spellcheck-attribute.html
143 lines (141 loc) · 12.1 KB
/
spellcheck-attribute.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>
<div></div>
<div spellcheck></div>
<div spellcheck="true"></div>
<div spellcheck=""></div>
<div spellcheck="false"></div>
<div spellcheck="abc"></div>
<div contenteditable="true"></div>
<div spellcheck contenteditable="true"></div>
<div spellcheck="true" contenteditable="true"></div>
<div spellcheck="" contenteditable="true"></div>
<div spellcheck="false" contenteditable="true"></div>
<div spellcheck="abc" contenteditable="true"></div>
<span spellcheck="false">
<div></div>
<div contenteditable="true"></div>
</span>
<span spellcheck="true">
<div spellcheck="false"></div>
<div contenteditable="true" spellcheck="false"></div>
</span>
<script>
let div = document.querySelector('div');
let divWithSpellcheck = document.querySelector('div[spellcheck]');
let divWithSpellcheckTrue = document.querySelector('div[spellcheck="true"]');
let divWithSpellcheckEmpty = document.querySelector('div[spellcheck=""]');
let divWithSpellcheckFalse = document.querySelector('div[spellcheck="false"]');
let divWithSpellcheckInvalid = document.querySelector('div[spellcheck="abc"]');
let divInsideSpanWithSpellcheckFalse = document.querySelector('span[spellcheck="false"] div');
let divWithSpellcheckFalseInsideSpanWithSpellcheckTrue = document.querySelector('span[spellcheck="true"] div[spellcheck="false"]');
let editableDiv = document.querySelector('div[contenteditable="true"]');
let editableDivWithSpellcheck = document.querySelector('div[spellcheck][contenteditable="true"]');
let editableDivWithSpellcheckTrue = document.querySelector('div[spellcheck="true"][contenteditable="true"]');
let editableDivWithSpellcheckEmpty = document.querySelector('div[spellcheck=""][contenteditable="true"]');
let editableDivWithSpellcheckFalse = document.querySelector('div[spellcheck="false"][contenteditable="true"]');
let editableDivWithSpellcheckInvalid = document.querySelector('div[spellcheck="abc"][contenteditable="true"]');
let editableDivInsideSpanWithSpellcheckFalse = document.querySelector('span[spellcheck="false"] div[contenteditable="true"]');
let editableDivWithSpellcheckFalseInsideSpanWithSpellcheckTrue = document.querySelector('span[spellcheck="true"] div[spellcheck="false"][contenteditable="true"]');
console.log('div.spellcheck', div.spellcheck);
console.log('divWithSpellcheck.spellcheck', divWithSpellcheck.spellcheck);
console.log('divWithSpellcheckTrue.spellcheck', divWithSpellcheckTrue.spellcheck);
console.log('divWithSpellcheckEmpty.spellcheck', divWithSpellcheckEmpty.spellcheck);
console.log('divWithSpellcheckFalse.spellcheck', divWithSpellcheckFalse.spellcheck);
console.log('divWithSpellcheckInvalid.spellcheck', divWithSpellcheckInvalid.spellcheck);
console.log('divInsideSpanWithSpellcheckFalse.spellcheck', divInsideSpanWithSpellcheckFalse.spellcheck);
console.log('divWithSpellcheckFalseInsideSpanWithSpellcheckTrue.spellcheck', divWithSpellcheckFalseInsideSpanWithSpellcheckTrue.spellcheck);
console.log('editableDiv.spellcheck', editableDiv.spellcheck);
console.log('editableDivWithSpellcheck.spellcheck', editableDivWithSpellcheck.spellcheck);
console.log('editableDivWithSpellcheckTrue.spellcheck', editableDivWithSpellcheckTrue.spellcheck);
console.log('editableDivWithSpellcheckEmpty.spellcheck', editableDivWithSpellcheckEmpty.spellcheck);
console.log('editableDivWithSpellcheckFalse.spellcheck', editableDivWithSpellcheckFalse.spellcheck);
console.log('editableDivWithSpellcheckInvalid.spellcheck', editableDivWithSpellcheckInvalid.spellcheck);
console.log('editableDivInsideSpanWithSpellcheckFalse.spellcheck', editableDivInsideSpanWithSpellcheckFalse.spellcheck);
console.log('editableDivWithSpellcheckFalseInsideSpanWithSpellcheckTrue.spellcheck', editableDivWithSpellcheckFalseInsideSpanWithSpellcheckTrue.spellcheck);
console.log('div.getAttribute("spellcheck")', div.getAttribute('spellcheck'));
console.log('divWithSpellcheck.getAttribute("spellcheck")', divWithSpellcheck.getAttribute('spellcheck'));
console.log('divWithSpellcheckTrue.getAttribute("spellcheck")', divWithSpellcheckTrue.getAttribute('spellcheck'));
console.log('divWithSpellcheckEmpty.getAttribute("spellcheck")', divWithSpellcheckEmpty.getAttribute('spellcheck'));
console.log('divWithSpellcheckFalse.getAttribute("spellcheck")', divWithSpellcheckFalse.getAttribute('spellcheck'));
console.log('divWithSpellcheckInvalid.getAttribute("spellcheck")', divWithSpellcheckInvalid.getAttribute('spellcheck'));
console.log('divInsideSpanWithSpellcheckFalse.getAttribute("spellcheck")', divInsideSpanWithSpellcheckFalse.getAttribute('spellcheck'));
console.log('divWithSpellcheckFalseInsideSpanWithSpellcheckTrue.getAttribute("spellcheck")', divWithSpellcheckFalseInsideSpanWithSpellcheckTrue.getAttribute('spellcheck'));
console.log('editableDiv.getAttribute("spellcheck")', editableDiv.getAttribute('spellcheck'));
console.log('editableDivWithSpellcheck.getAttribute("spellcheck")', editableDivWithSpellcheck.getAttribute('spellcheck'));
console.log('editableDivWithSpellcheckTrue.getAttribute("spellcheck")', editableDivWithSpellcheckTrue.getAttribute('spellcheck'));
console.log('editableDivWithSpellcheckEmpty.getAttribute("spellcheck")', editableDivWithSpellcheckEmpty.getAttribute('spellcheck'));
console.log('editableDivWithSpellcheckFalse.getAttribute("spellcheck")', editableDivWithSpellcheckFalse.getAttribute('spellcheck'));
console.log('editableDivWithSpellcheckInvalid.getAttribute("spellcheck")', editableDivWithSpellcheckInvalid.getAttribute('spellcheck'));
console.log('editableDivInsideSpanWithSpellcheckFalse.getAttribute("spellcheck")', editableDivInsideSpanWithSpellcheckFalse.getAttribute('spellcheck'));
console.log('editableDivWithSpellcheckFalseInsideSpanWithSpellcheckTrue.getAttribute("spellcheck")', editableDivWithSpellcheckFalseInsideSpanWithSpellcheckTrue.getAttribute('spellcheck'));
customElements.define('test-custom-element', class extends HTMLElement {});
let customElement = document.createElement('test-custom-element');
let customElementWithSpellcheckTrue = document.createElement('test-custom-element');
customElementWithSpellcheckTrue.setAttribute('spellcheck', 'true');
let customElementWithSpellcheckEmpty = document.createElement('test-custom-element');
customElementWithSpellcheckEmpty.setAttribute('spellcheck', '');
let customElementWithSpellcheckFalse = document.createElement('test-custom-element');
customElementWithSpellcheckFalse.setAttribute('spellcheck', 'false');
let customElementWithSpellcheckInvalid = document.createElement('test-custom-element');
customElementWithSpellcheckInvalid.setAttribute('spellcheck', 'abc');
let editableCustomElement = document.createElement('test-custom-element');
editableCustomElement.setAttribute('contenteditable', 'true');
let editableCustomElementWithSpellcheckTrue = document.createElement('test-custom-element');
editableCustomElementWithSpellcheckTrue.setAttribute('spellcheck', 'true');
editableCustomElementWithSpellcheckTrue.setAttribute('contenteditable', 'true');
let editableCustomElementWithSpellcheckEmpty = document.createElement('test-custom-element');
editableCustomElementWithSpellcheckEmpty.setAttribute('spellcheck', '');
editableCustomElementWithSpellcheckEmpty.setAttribute('contenteditable', 'true');
let editableCustomElementWithSpellcheckFalse = document.createElement('test-custom-element');
editableCustomElementWithSpellcheckFalse.setAttribute('spellcheck', 'false');
editableCustomElementWithSpellcheckFalse.setAttribute('contenteditable', 'true');
let editableCustomElementWithSpellcheckInvalid = document.createElement('test-custom-element');
editableCustomElementWithSpellcheckInvalid.setAttribute('spellcheck', 'abc');
editableCustomElementWithSpellcheckInvalid.setAttribute('contenteditable', 'true');
document.body.appendChild(customElement);
document.body.appendChild(customElementWithSpellcheckTrue);
document.body.appendChild(customElementWithSpellcheckEmpty);
document.body.appendChild(customElementWithSpellcheckFalse);
document.body.appendChild(customElementWithSpellcheckInvalid);
document.body.appendChild(editableCustomElement);
document.body.appendChild(editableCustomElementWithSpellcheckTrue);
document.body.appendChild(editableCustomElementWithSpellcheckEmpty);
document.body.appendChild(editableCustomElementWithSpellcheckFalse);
document.body.appendChild(editableCustomElementWithSpellcheckInvalid);
console.log('customElement.spellcheck', customElement.spellcheck);
console.log('customElementWithSpellcheckTrue.spellcheck', customElementWithSpellcheckTrue.spellcheck);
console.log('customElementWithSpellcheckEmpty.spellcheck', customElementWithSpellcheckEmpty.spellcheck);
console.log('customElementWithSpellcheckFalse.spellcheck', customElementWithSpellcheckFalse.spellcheck);
console.log('customElementWithSpellcheckInvalid.spellcheck', customElementWithSpellcheckInvalid.spellcheck);
console.log('editableCustomElement.spellcheck', editableCustomElement.spellcheck);
console.log('editableCustomElementWithSpellcheckTrue.spellcheck', editableCustomElementWithSpellcheckTrue.spellcheck);
console.log('editableCustomElementWithSpellcheckEmpty.spellcheck', editableCustomElementWithSpellcheckEmpty.spellcheck);
console.log('editableCustomElementWithSpellcheckFalse.spellcheck', editableCustomElementWithSpellcheckFalse.spellcheck);
console.log('editableCustomElementWithSpellcheckInvalid.spellcheck', editableCustomElementWithSpellcheckInvalid.spellcheck);
console.log('customElement.getAttribute("spellcheck")', customElement.getAttribute('spellcheck'));
console.log('customElementWithSpellcheckTrue.getAttribute("spellcheck")', customElementWithSpellcheckTrue.getAttribute('spellcheck'));
console.log('customElementWithSpellcheckEmpty.getAttribute("spellcheck")', customElementWithSpellcheckEmpty.getAttribute('spellcheck'));
console.log('customElementWithSpellcheckFalse.getAttribute("spellcheck")', customElementWithSpellcheckFalse.getAttribute('spellcheck'));
console.log('customElementWithSpellcheckInvalid.getAttribute("spellcheck")', customElementWithSpellcheckInvalid.getAttribute('spellcheck'));
console.log('editableCustomElement.getAttribute("spellcheck")', editableCustomElement.getAttribute('spellcheck'));
console.log('editableCustomElementWithSpellcheckTrue.getAttribute("spellcheck")', editableCustomElementWithSpellcheckTrue.getAttribute('spellcheck'));
console.log('editableCustomElementWithSpellcheckEmpty.getAttribute("spellcheck")', editableCustomElementWithSpellcheckEmpty.getAttribute('spellcheck'));
console.log('editableCustomElementWithSpellcheckFalse.getAttribute("spellcheck")', editableCustomElementWithSpellcheckFalse.getAttribute('spellcheck'));
console.log('editableCustomElementWithSpellcheckInvalid.getAttribute("spellcheck")', editableCustomElementWithSpellcheckInvalid.getAttribute('spellcheck'));
const elements = [ new DOMParser().parseFromString('<html><body spellcheck="false"><input /></body></html>', 'text/html').body.firstElementChild,
new DOMParser().parseFromString('<html><body spellcheck="false"><textarea></textarea></body></html>', 'text/html').body.firstElementChild,
new DOMParser().parseFromString('<html><body spellcheck="false"><div></div></body></html>', 'text/html').body.firstElementChild,
new DOMParser().parseFromString('<html><body spellcheck="false"><span></span></body></html>', 'text/html').body.firstElementChild ];
elements.forEach(element => {
console.log(element, element.spellcheck);
console.log(element, element.getAttribute('spellcheck'));
});
</script>
</body>
</html>