Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /html/dom/partial-updates/tentative/template-for-ignores-case.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8" />
<title>HTML partial updates - ignores case for parsed markers</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="placeholder"><?Start name=a><?ENd><?MARKER name=b><?marKER name=c></div>
<template for="a">a</template>
<template for="b">b</template>
<template for="c">c</template>
<script>
test(() => {
assert_equals(document.getElementById("placeholder").textContent, "abc");
}, "marker/end/start PI targets are parsed as lower case");
</script>