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-removal.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Removal of meta element with content-language should not reset pragma directive</title>
<meta http-equiv=content-language content=de-DE>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
document.querySelector('meta').remove();
assert_equals(document.querySelector(":root:lang(de-DE)"), document.documentElement);
}, "Removal of <meta> with content-language should not reset pragma directive");
</script>