Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/document-metadata/the-meta-element/pragma-directives/http-equiv-lang-whitespace-end.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Whitespace at end of content attribute should be ignored for content-language</title>
<meta http-equiv=content-language content="de-DE ">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
assert_equals(document.querySelector(":root:lang(de-DE)"), document.documentElement);
}, "Whitespace at end of content attribute should be ignored for content-language");
</script>