Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / BOM-override.pl
blob438d21f1ecd4890f2f054fa4418ebda954116559
1 #!/usr/bin/perl
2 # Test that BOM can override whatever charset was set in Content-Type
3 # (this is not the behavior of Firefox, nor expected by any standard).
5 print "Content-type: text/html;charset=x-mac-hebrew\r\n";
6 print "\r\n";
8 print "\xef\xbb\xbf";
9 print "SUССESS";
10 print "<script>if (window.testRunner) testRunner.dumpAsText();</script>";