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

Unified Diff: LayoutTests/inspector/editor/text-editor-undo-redo-expected.txt

Issue 22638008: DevTools: Use CodeMirror modes instead of highlight tokenizers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address comments Created 7 years, 4 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
Index: LayoutTests/inspector/editor/text-editor-undo-redo-expected.txt
diff --git a/LayoutTests/inspector/editor/text-editor-undo-redo-expected.txt b/LayoutTests/inspector/editor/text-editor-undo-redo-expected.txt
deleted file mode 100644
index 02b087225330bdbb820e1559a453ced9ab06c1a2..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/editor/text-editor-undo-redo-expected.txt
+++ /dev/null
@@ -1,448 +0,0 @@
-Tests undo/redo operations in the editor model.
-
-
-Running: testUndoRedoTab
-Text before edit:
-1
-2
-3
-
-Text after edit:
-1
- |2
-3
-
-Text after undo:
-1
-|2
-3
-
-Text after redo:
-1
- |2
-3
-
-
-Running: testConsecutiveCharactersAndNewLines
-Text before edit:
-function foo()
-{
-
-}
-
-Text after edit:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after first undo:
-function foo()
-{
- bar();
- baz();|
-}
-
-Text after second undo:
-function foo()
-{
- bar();|
-}
-
-Text after third undo:
-function foo()
-{
-|
-}
-
-Text after first redo:
-function foo()
-{
- bar();|
-}
-
-Text after second redo:
-function foo()
-{
- bar();
- baz();|
-}
-
-Text after third redo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-
-Running: testEditRangeWithTheSameTextAsOriginal
-Text before edit:
-function foo()
-{
-
-}
-
-Text after edit:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after paste of the same text:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after first undo:
-function foo()
-{
- bar();
-> baz();
-< foo();
-}
-
-Text after second undo:
-function foo()
-{
- bar();
- baz();|
-}
-
-Text after first redo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after second redo:
-function foo()
-{
- bar();
- baz();
-| foo();
-}
-
-
-Running: testDelete
-Text before edit:
-function foo()
-{
-
-}
-
-Text after edit:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after deletes:
-function foo()
-{
-|
-}
-
-Text after first undo:
-function foo()
-{
-| bar();
- baz();
- foo();
-}
-
-Text after second undo:
-function foo()
-{
- bar();
- baz();|
-}
-
-Text after first redo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after second redo:
-function foo()
-{
-|
-}
-
-
-Running: testBackspace
-Text before edit:
-function foo()
-{
-
-}
-
-Text after edit:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after backspaces:
-function foo()
-{
-|
-}
-
-Text after first undo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after second undo:
-function foo()
-{
- bar();
- baz();|
-}
-
-Text after first redo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after second redo:
-function foo()
-{
-|
-}
-
-
-Running: testBackspaceAndDeleteInDifferentLines
-Text before edit:
-function foo()
-{
-
-}
-
-Text after edit:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after backspace:
-function foo()
-{
- bar();
- baz();
- foo()|
-}
-
-Text after delete:
-function foo()
-{
-| bar();
- baz();
- foo()
-}
-
-Text after first undo:
-function foo()
-{
-| bar();
- baz();
- foo()
-}
-
-Text after second undo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after third undo:
-function foo()
-{
- bar();
- baz();|
-}
-
-Text after first redo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after second redo:
-function foo()
-{
- bar();
- baz();
- foo()|
-}
-
-Text after third redo:
-function foo()
-{
-| bar();
- baz();
- foo()
-}
-
-
-Running: testPasteSeveralTimes
-Text before edit:
-function foo()
-{
-
-}
-
-Text after edit:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after first paste:
-function foo()
-{
- bar();
- baz();
- foo();42|
-}
-
-Text after second paste:
-function foo()
-{
- bar();
- baz();
- foo();4242|
-}
-
-Text after first undo:
-function foo()
-{
- bar();
- baz();
- foo();42|
-}
-
-Text after second undo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after third undo:
-function foo()
-{
- bar();
- baz();|
-}
-
-Text after first redo:
-function foo()
-{
- bar();
- baz();
- foo();|
-}
-
-Text after second redo:
-function foo()
-{
- bar();
- baz();
- foo();42|
-}
-
-Text after third redo:
-function foo()
-{
- bar();
- baz();
- foo();4242|
-}
-
-
-Running: testSelectionAfterUndoRedo
-Text before edit:
-function foo()
-{
-
-}
-
-Text after backspace:
-function foo()
-{|
-}
-
-Text after first undo:
-function foo()
-{
-|
-}
-
-Text after first redo:
-function foo()
-{|
-}
-
-Text after second undo:
-function foo()
-{>
-<
-}
-
-Text after deleting selection:
-function foo()
-{|
-}
-
-Text after first undo:
-function foo()
-{>
-<
-}
-
-Text after first redo:
-function foo()
-{|
-}
-
-Text after second undo:
-function foo()
-{>
-<
-}
-
-
« no previous file with comments | « LayoutTests/inspector/editor/text-editor-undo-redo.html ('k') | LayoutTests/inspector/syntax-highlight-css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698