blob: 3f972ef70d827f6b5749896e9c3a19a9408b301a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1663740">
<style>
@namespace url(http://www.w3.org/1998/Math/MathML);
* {
all: inherit;
overflow-inline: hidden;
}
</style>
<script>
window.addEventListener('load', () => {
var x = document.getElementById('a')
x.setAttribute('mathvariant', 'double-struck')
x.innerHTML = '<select></select>'
})
</script>
<math id='a'>
|