https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 20d1447c7c5e95723d5c102b3645461fd0477e55 authored by Marcos Cáceres on 22 March 2018, 02:51:25 UTC
Remove PaymentCurrencyAmount.currencySystem tests
Tip revision: 20d1447
innerhtml-06.html
<!DOCTYPE html>
<html>
<head>
<title>math in html: innerHTML</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<h1>math in html: innerHTML</h1>
<div id="log"></div>
<div style="display:none">
<div id="d1"><math><mi>x</mi></math></div>
</div>
<script>
test(function() {
  var math = document.getElementById("d1").firstChild;
  assert_equals(math.innerHTML, "<mi>x</mi>");
},"innerHTML defined on math.");
</script>
back to top