blob: f72171c777bc8730b9adbf26ef798fa7695827f0 [file] [log] [blame]
#!/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/javascript;charset=x-mac-hebrew\r\n";
print "\r\n";
print "\xef\xbb\xbf";
print "document.write('<p>SUССESS</p>');";