Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!doctype html>
<meta charset="utf-8" />
<title>HTML partial updates - declarative append</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="placeholder" marker="ph"><?Start name=a><?ENd><?MARKER name=b><?marKER></div>
<template for="ph#a">a</template>
<template for="ph#b">b</template>
<template for="ph">c</template>
<script>
test(() => {
assert_equals(document.getElementById("placeholder").textContent, "abc");
}, "marker/end/start PI targets are case-insensitive");
</script>