Commit 7a108957 authored by mstensho@opera.com's avatar mstensho@opera.com

Convert line breaks from DOS to UNIX style.

git-svn-id: svn://svn.chromium.org/blink/trunk@170039 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 82ea6f56
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
Bug 101984: Heap-buffer-overflow in WebCore::RenderBlock::clone.<br /> Bug 101984: Heap-buffer-overflow in WebCore::RenderBlock::clone.<br />
Test passes if it does not crash. Test passes if it does not crash.
<body> <body>
<table> <table>
<div class="container"> <div class="container">
<div class="testClass" id="test1"> <div class="testClass" id="test1">
</div> </div>
<div class="testClass"> <div class="testClass">
<div> <div>
<i id="test2"></i> <i id="test2"></i>
</div> </div>
</div> </div>
</div> </div>
</table> </table>
<script> <script>
if (window.testRunner) if (window.testRunner)
testRunner.dumpAsText(); testRunner.dumpAsText();
document.head.appendChild(document.createElement("style")); document.head.appendChild(document.createElement("style"));
var styleSheet0 = document.styleSheets[0]; var styleSheet0 = document.styleSheets[0];
var test1 = document.getElementById("test1"); var test1 = document.getElementById("test1");
var test2 = document.getElementById("test2"); var test2 = document.getElementById("test2");
document.execCommand("SelectAll", true); document.execCommand("SelectAll", true);
styleSheet0.insertRule('.testClass { -webkit-column-span: all ; }', 0); styleSheet0.insertRule('.testClass { -webkit-column-span: all ; }', 0);
test1.appendChild(test2); test1.appendChild(test2);
styleSheet0.insertRule('.testClass::first-letter { border-style: none; }', 0); styleSheet0.insertRule('.testClass::first-letter { border-style: none; }', 0);
styleSheet0.insertRule('.container { -webkit-column-axis: vertical; }', 0); styleSheet0.insertRule('.container { -webkit-column-axis: vertical; }', 0);
</script> </script>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment