haikuwebkit/LayoutTests/svg/custom/title-assertion.html

15 lines
375 B
HTML

<!DOCTYPE html>
<html>
<script src="../../resources/js-test-pre.js"></script>
<svg>
<title>title</title>
</svg>
<script>
document.title = 'New title';
description('We had a bug that updating document.title caused an assertion failure.');
testPassed('if any assertion does not fail.');
</script>
<script src="../../resources/js-test-post.js"></script>
</html>