Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: LayoutTests/editing/selection/rtl-delete-within-line-crash.html

Issue 206073002: Remove redundant clusterfuzz test (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/platform/android/editing/selection/rtl-delete-within-line-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/editing/selection/rtl-delete-within-line-crash.html
diff --git a/LayoutTests/editing/selection/rtl-delete-within-line-crash.html b/LayoutTests/editing/selection/rtl-delete-within-line-crash.html
deleted file mode 100644
index 508611b4659e7367462ebdabf5d3a341c66f007f..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/selection/rtl-delete-within-line-crash.html
+++ /dev/null
@@ -1,93 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var aoScriptElements = document.getElementsByTagName("script");
- for(var i = 0; i < aoScriptElements.length; i++) {
- aoScriptElements[i].parentNode.removeChild(aoScriptElements[i]);
- }
-
- function event_handler_384_readystatechange() {
- var oSelection = window.getSelection();
- oSelection.deleteFromDocument();
- document.execCommand("SelectAll", false);
- }
- document.addEventListener("readystatechange", event_handler_384_readystatechange, false);
-
- var event_handler_387_DOMCharacterDataModified_active = false;
- function event_handler_387_DOMCharacterDataModified() {
- if (event_handler_387_DOMCharacterDataModified_active) return;
- event_handler_387_DOMCharacterDataModified_active = true;
- var oElement = event.srcElement;
- if (oElement.parentNode) {
- oElement.parentNode.replaceChild((function(){
- var aoElements = document.getElementsByTagName("*");
- return aoElements[66 % aoElements.length].cloneNode(true);
- })(), oElement);
- }
- var oSelection=window.getSelection();
- var oSelectionElement = (function(){
- var aoElements = document.getElementsByTagName("*");
- if (aoElements.length) return aoElements[84 % aoElements.length];
- })();
- oSelection.collapse(oSelectionElement, oSelectionElement.textContent.length?34 % oSelectionElement.textContent.length:0);
- oSelection.modify('extend', 'backward', 'sentence');
- var oRange = oSelection.rangeCount ? oSelection.getRangeAt(15 % oSelection.rangeCount) : null;
- if (oRange) oSelection.addRange(oRange.cloneRange());
- oSelection.modify('extend', 'forward', 'line');
- var oRange = oSelection.rangeCount ? oSelection.getRangeAt(41 % oSelection.rangeCount) : null;
- if (oRange) {
- var oDocumentFragment = oRange.extractContents();
- if (oDocumentFragment) {
- var oParent = (function(){
- var aoElements = document.getElementsByTagName("*");
- if (aoElements.length) return aoElements[21 % aoElements.length];
- })();
- if (oParent) {
- oParent.appendChild(oDocumentFragment);
- }
- }
- }
- event_handler_387_DOMCharacterDataModified_active = false;
- }
- document.addEventListener("DOMCharacterDataModified", event_handler_387_DOMCharacterDataModified, true);
-
- </script>
- <style>
- .CLASS1{display:inline;-webkit-writing-mode:vertical-rl;}
- .CLASS5{top:inherit;-webkit-text-combine:horizontal;}
- </style>
- </head>
- <body>
- <meta>
- <pre>
-<tt>
-<rb>
-<svg></svg>
-<button>
-<div class="CLASS1 CLASS5">
-<fieldset>
-</fieldset>
-<table>
-<caption>
-<textarea></textarea>
-<select>
-</select>
-<select>
-<optgroup>
-<option>
-</select>
-TestPassesIfItDoesNotCrash.TestPassesIfItDoesNotCrash.TestPassesIfItDoesNotCrash.
-</table>
-A
-</div>
-</button>
-</rb>
-</tt>
- </pre>
- </meta>
- </body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/platform/android/editing/selection/rtl-delete-within-line-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698