Bug 1920800 Remove oldImages from check for flushed old principal handle r=pehrsons
[gecko.git] / testing / web-platform / tests / encoding-detection / ja-ISO-2022-JP-late.tentative.html
blob6e4bc9157d809aa6ed795164bc68baeca7260258
1 <!doctype html>
2 <meta charset="utf-8">
3 <title>ja ISO-2022-JP late</title>
4 <script src=/resources/testharness.js></script>
5 <script src=/resources/testharnessreport.js></script>
6 <script>
7 setup({explicit_done:true});
8 window.onmessage = function(e) {
9 test(function() {
10 assert_equals(e.data, "ISO-2022-JP", 'Expected ISO-2022-JP');
11 }, "Check detection result");
12 w.close();
13 done();
15 var w = window.open("support/ja-ISO-2022-JP-late.sub.html");
16 </script>