chromium/third_party/blink/web_tests/http/tests/misc/BOM-override.pl

#!/usr/bin/perl
# Test that BOM can override whatever charset was set in Content-Type
# (this is not the behavior of Firefox, nor expected by any standard).

print "Content-type: text/html;charset=x-mac-hebrew\r\n";
print "\r\n";

print "\xef\xbb\xbf";
print "SUССESS";
print "<script>if (window.testRunner) testRunner.dumpAsText();</script>";