| Index: LayoutTests/platform/chromium/fast/text/international/complex-text-rectangle.html
|
| diff --git a/LayoutTests/platform/chromium/fast/text/international/complex-text-rectangle.html b/LayoutTests/platform/chromium/fast/text/international/complex-text-rectangle.html
|
| deleted file mode 100644
|
| index b43fcd674646a769f9da6282e1db9ed3029fd5e7..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/platform/chromium/fast/text/international/complex-text-rectangle.html
|
| +++ /dev/null
|
| @@ -1,25 +0,0 @@
|
| -<meta charset=utf-8>
|
| -
|
| -<span id="a">A⃕A︠A⃕A⃕A⃕A⃕A⃕⃕A͋</span>
|
| -
|
| -This test passes if it doesn't crash or log a failure message to the console.
|
| -
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| -var textNode = document.getElementById('a').firstChild;
|
| -var length = textNode.textContent.length;
|
| -for (var start = 0; start < length; ++start) {
|
| - for (var end = 0; end < length; ++end) {
|
| - var range = document.createRange();
|
| - range.setStart(textNode, start);
|
| - range.setEnd(textNode, end);
|
| - var rect = range.getBoundingClientRect();
|
| - if (rect.width < 0 || rect.width > 200) {
|
| - console.log('FAIL: rect.width is ' + rect.width);
|
| - break;
|
| - }
|
| - }
|
| -}
|
| -</script>
|
|
|