chromium/third_party/blink/web_tests/fast/text-autosizing/meta-tag-autosizing-content-detection.html

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=800">
<style>
html { font-size: 16px; }
body { width: 800px; margin: 0; overflow-y: hidden; }
</style>

<script src="resources/autosizingTest.js"></script>
<script>
    var docElement = document.documentElement;
    newMetaTag = document.createElementNS("http://www.w3.org/TR/REC-html40", "meta");
    docElement.appendChild(newMetaTag);
</script>

</head>
<body>

This is to test that the meta tags are correctly processed for content detection by the text autosizer.
This test should be run with Debug build of chromium.

</body>
</html>