Home | History | Annotate | Download | only in encoding
      1 <html>
      2 <head>
      3 <meta http-equiv="content-type" content="text/html; charset=x-mac-cyrillic">
      4 <title>Frames and encodings</title>
      5 <script>
      6 if (window.layoutTestController) {
      7     layoutTestController.dumpAsText();
      8     layoutTestController.waitUntilDone();
      9 }
     10 
     11 window.done = function(charset) {
     12     document.open();
     13     document.write("<p>" + ((charset == "x-mac-cyrillic") ? "PASS" : "FAIL") + "</p>");
     14     <!-- It's unlikely that anyone has x-mac-cyrillic as default -->
     15 
     16     document.close();
     17 
     18     if (window.layoutTestController)
     19         layoutTestController.notifyDone();
     20 }
     21 </script>
     22 </head>
     23 <frameset rows="0,*">
     24     <frame src="about:" scrolling=no marginwidth=0 marginheight=0>
     25     <frame src="resources/frame-default-enc-frame.html">
     26 </frameset>
     27 </html>
     28