summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/encoding/ahram-org-eg.html
blob: d75cf067e12fc7998971f4469e451285c6c199cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<htm>

<head>
<meta http-equiv="content-language" content="en-us">
<meta http-equiv='content-type' content='text/htm; charset=windows-1256'>
<script language="javascript">
	if (navigator.appName == "Netscape")
	{
		document.write("<meta http-equiv='content-type' content='text/htm; charset=x-user-defined'>");
	}
</script>
</head>

<body>
<p>Test a particular example of broken markup that was making us ignore a charset declaration.</p>
<script>
  if (window.layoutTestController)
    layoutTestController.dumpAsText();

  var charset = document.characterSet;
  if (!charset)
    charset = document.charset;
  if (!charset)
    charset = document.inputEncoding;
  document.write("Encoding: " + charset + " (should be windows-1256)");
</script>
</body>
</htm>