You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<metaname="assert" content="In this test, we postulate that the word 'wolks' represents both a grammar error and a spelling error. In such such editorial scenario, then the pseudo-element ::spelling-error's 'color' (green) is supposed to be drawn over the pseudo-element ::grammar-error's 'color' (red). The background color should remain yellow as ::spelling-error's 'background-color' is unspecified, therefore defaulting to 'transparent'.">
<style>
div
{
font-size:300%;
}
div::spelling-error
{
color: green;
}
div::grammar-error
{
background-color: yellow;
color: red;
}
</style>
<scripttype="text/javascript">
functionstartTest()
{
document.getElementById("target").focus();
}
</script>
<bodyonload="startTest();">
<p>PREREQUISITE: User agent needs to have an enabled and capable grammar error module and an enabled and capable spelling error module. If it does not, then this test does not apply to such user agent.
<p>This test also requires that the targeted editable text element must receive system focus.
<p>Test passes if each glyph of "wolks" is green and if the background of "wolks" is yellow.
<divcontenteditable="true" id="target">I wolks on the sidewalk.</div>