chromium/third_party/blink/web_tests/fast/css/comment-before-charset-external.html

<!DOCTYPE HTML>
<html>
<head>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

window.onload = function() {
    var elmt = document.getElementById("probe");  
    var color = window.getComputedStyle(elmt, null).getPropertyValue("background-color");  
    document.getElementById("results").innerHTML= color;
}
</script>
<link rel="stylesheet" href="resources/comment-before-charset.css" />
</head>
<body>
<div id="probe" class="green">
I should have a green background.
</div>
<div id="results"></div>
</html>