summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dom/base-attribute-parsing.xhtml
blob: e7438cb168f82bf0d2c960171be04c8e37cfc611 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<html xmlns='http://www.w3.org/1999/xhtml'>
<div xml:base="div/">
<p xml:base="ё">Test how xml:base value is parsed (<a href="https://bugs.webkit.org/show_bug.cgi?id=28858">bug 28858</a>). Passed if no assertion failure.</p>
<p id="result"></p>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
else
    document.getElementById("result").innerHTML = "Result: " + document.getElementsByTagName("a")[0].baseURI;
</script>
</div>
</html>