9 lines
204 B
HTML
9 lines
204 B
HTML
<!DOCTYPE html>
|
|
<title>これは文字実験です。</title>
|
|
<script>
|
|
function report() {
|
|
window.parent.postMessage(document.characterSet, "*");
|
|
}
|
|
</script>
|
|
<body onload="report();">
|
|
<p>これは文字実験です。</p>
|