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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
<!DOCTYPE html>
<html>
<head>
<title>
HTML5 Text Replacement: insertReplacementText Input Event Test
</title>
<meta
content="text/html; charset=UTF-8"
http-equiv="Content-Type"
/>
<link
rel="author"
title="Microsoft"
href="http://www.microsoft.com/"
/>
<link
rel="help"
href="https://w3c.github.io/input-events/#overview"
/>
<meta
name="assert"
content="Test insertReplacementText input events and dataTransfer objects"
/>
<style>
.test-element {
border: 2px solid blue;
width: 200px;
height: 60px;
margin: 10px;
padding: 10px;
}
.test-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin: 20px 0;
}
.result {
margin: 5px 0;
padding: 5px;
border: 1px solid #ccc;
font-family: monospace;
font-size: 12px;
}
textarea,
input {
width: 180px;
height: 40px;
}
.instructions {
background-color: #f0f0f0;
padding: 10px;
margin: 10px 0;
}
</style>
<script type="text/javascript">
function logResult(test, pass, details) {
const div = document.getElementById("results");
const resultDiv = document.createElement("div");
resultDiv.className = "result";
resultDiv.style.color = pass ? "green" : "red";
resultDiv.innerHTML = `<strong>${test}:</strong> ${
pass ? "PASS" : "FAIL"
} - ${details}`;
div.appendChild(resultDiv);
}
function setupReplacementTarget(
element,
testName,
isContentEditable
) {
element.addEventListener("input", function (e) {
if (e.inputType === "insertReplacementText") {
if (isContentEditable) {
// For contenteditable div: expect dataTransfer populated, data as null
const hasDataTransfer =
e.dataTransfer !== null && e.dataTransfer !== undefined;
const dataIsNull = e.data === null;
if (hasDataTransfer && dataIsNull) {
logResult(
testName,
true,
`DataTransfer: ${
e.dataTransfer.types
? Array.from(e.dataTransfer.types).join(", ")
: "none"
}, Data: null (correct)`
);
} else {
logResult(
testName,
false,
`Expected dataTransfer populated and data null. Got dataTransfer: ${hasDataTransfer}, data: ${e.data}`
);
}
} else {
// For input/textarea: expect dataTransfer null, data as text
const dataTransferIsNull = e.dataTransfer === null;
const hasData = e.data !== null && e.data !== undefined;
if (dataTransferIsNull && hasData) {
logResult(
testName,
true,
`Data: "${e.data}", DataTransfer: null (correct)`
);
} else {
logResult(
testName,
false,
`Expected dataTransfer null and data populated. Got dataTransfer: ${e.dataTransfer}, data: ${e.data}`
);
}
}
}
});
}
window.onload = function () {
// Make all divs contenteditable
document
.querySelectorAll("div.test-element")
.forEach((el) => (el.contentEditable = true));
// Setup input event listeners
setupReplacementTarget(
document.getElementById("div-target1"),
"Spell Check - ContentEditable Div",
true
);
setupReplacementTarget(
document.getElementById("textarea-target1"),
"Spell Check - Textarea",
false
);
setupReplacementTarget(
document.getElementById("input-target1"),
"Spell Check - Input",
false
);
};
</script>
</head>
<body>
<h1>insertReplacementText Input Event Test</h1>
<p>
Test insertReplacementText input events and their dataTransfer
objects during text replacement operations.
</p>
<div class="instructions">
<h3>Test Instructions:</h3>
<ol>
<li>
<strong>Spell Check:</strong> Type a misspelled word,
right-click and select a correction
</li>
</ol>
</div>
<div class="test-container">
<!-- Spell Check Tests -->
<div>
<h4>Spell Check - ContentEditable Div</h4>
<div id="div-target1" class="test-element" spellcheck="true">
Type "teh" or "recieve" and right-click for corrections
</div>
</div>
<div>
<h4>Spell Check - Textarea</h4>
<textarea
id="textarea-target1"
class="test-element"
spellcheck="true"
placeholder="Type 'teh' or 'recieve' and right-click for corrections"
></textarea>
</div>
<div>
<h4>Spell Check - Input</h4>
<input
id="input-target1"
class="test-element"
spellcheck="true"
placeholder="Type 'teh' or 'recieve' and right-click for corrections"
/>
</div>
</div>
<div class="instructions">
<h4>How to test:</h4>
<ul>
<li>
<strong>Spell Check:</strong> Type misspelled words like "teh"
or "recieve", right-click and select correction
</li>
</ul>
</div>
<h3>insertReplacementText Results:</h3>
<div id="results">
Perform text replacement operations above to see PASS/FAIL
results...
</div>
</body>
</html>
|