Revision e6cffaa6d307ec6ef08102aad9c7a4a1df5b7d53 authored by theodab on 13 April 2018, 19:17:17 UTC, committed by Joey Parrish on 13 April 2018, 19:17:17 UTC
On Edge, navigator.requestMediaKeySystemAccess ignores the value passed along to the label configuration field.  This test exposes that bug.

See https://goo.gl/6SgCRb
1 parent 81bcc8d
Raw File
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