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

Unified Diff: LayoutTests/inspector/view-events-expected.txt

Issue 1113813002: [DevTools] Rename View to Widget. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 8 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 | « LayoutTests/inspector/view-events.html ('k') | LayoutTests/inspector/widget-events.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/view-events-expected.txt
diff --git a/LayoutTests/inspector/view-events-expected.txt b/LayoutTests/inspector/view-events-expected.txt
deleted file mode 100644
index 188d361e69ef0e4c90e18cdc85878f2fa8806d87..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/view-events-expected.txt
+++ /dev/null
@@ -1,240 +0,0 @@
-This tests that events are properly propagated through View hierarchy.
-
-
-Running: testShowView
-View()
-View.show()
- View.wasShown()
- View.onResize()
-View.detach()
- View.willHide()
-
-Running: testAppendViaDOM
-View()
-Error: Attempt to add view via regular DOM operation.
-
-Running: testInsertViaDOM
-View()
-Error: Attempt to add view via regular DOM operation.
-
-Running: testAttachToOrphanNode
-View()
-View.show()
-Error: Attempt to attach view to orphan node
-
-Running: testImmediateParent
-Parent()
-Child()
-Child.show()
-OK
-
-Running: testDistantParent
-Parent()
-Child()
-Child.show()
-OK
-
-Running: testEvents
-Parent()
-Child()
-Parent.show()
- Parent.wasShown()
- Parent.onResize()
-Parent.doResize()
-Child.show()
- Child.wasShown()
- Child.onResize()
-Parent.doResize()
- Child.onResize()
-Parent.detach()
- Child.willHide()
- Parent.willHide()
-Parent.show()
- Parent.wasShown()
- Child.wasShown()
- Parent.onResize()
- Child.onResize()
-Child.detach()
- Child.willHide()
-Parent.detach()
- Parent.willHide()
-
-Running: testEventsHideOnDetach
-Parent()
-Child()
-Parent.show()
- Parent.wasShown()
- Parent.onResize()
-Parent.doResize()
-Child.show()
- Child.wasShown()
- Child.onResize()
-Parent.doResize()
- Child.onResize()
-Parent.detach()
- Child.willHide()
- Parent.willHide()
-Parent.show()
- Parent.wasShown()
- Child.wasShown()
- Parent.onResize()
- Child.onResize()
-Child.detach()
- Child.willHide()
-Parent.detach()
- Parent.willHide()
-
-Running: testViewCounter
-Parent()
-Parent.show()
- Parent.wasShown()
- Parent.onResize()
-Child()
-Child.show()
- Child.wasShown()
- Child.onResize()
- view counter: 1
-Child 2()
-Child 2.show()
- Child 2.wasShown()
- Child 2.onResize()
- view counter: 2
-Child.detach()
- Child.willHide()
- view counter: 1
-Child 2.detach()
- Child 2.willHide()
- view counter: 0
-
-Running: testRemoveChild
-Parent()
-Parent.show()
- Parent.wasShown()
- Parent.onResize()
-Child()
-Child.show()
- Child.wasShown()
- Child.onResize()
-Error: Attempt to remove element containing view via regular DOM operation
-
-Running: testImplicitRemoveChild
-Parent()
-Child()
-Child.show()
-Error: Attempt to remove element containing view via regular DOM operation
-
-Running: testRemoveChildren
-Parent()
-Child()
-Child.show()
-Error: Attempt to remove element containing view via regular DOM operation
-
-Running: testImplicitRemoveChildren
-Parent()
-Child()
-Child.show()
-Error: Attempt to remove element containing view via regular DOM operation
-
-Running: testShowOnWasShown
-Parent()
-Child()
-Parent.show()
- Parent.wasShown()
-Child.show()
- Child.wasShown()
- Parent.onResize()
- Child.onResize()
-Parent.detach()
- Child.willHide()
- Parent.willHide()
-
-Running: testShowNestedOnWasShown
-Top()
-Middle()
-Bottom()
-Middle.show()
-Top.show()
- Top.wasShown()
-Bottom.show()
- Middle.wasShown()
- Bottom.wasShown()
- Top.onResize()
- Middle.onResize()
- Bottom.onResize()
-Top.detach()
- Bottom.willHide()
- Middle.willHide()
- Top.willHide()
-
-Running: testDetachOnWasShown
-Parent()
-Child()
-Child.show()
-Parent.show()
- Parent.wasShown()
-Child.detach()
- Parent.onResize()
-Parent.detach()
- Parent.willHide()
-
-Running: testShowOnWillHide
-Parent()
-Child()
-Parent.show()
- Parent.wasShown()
- Parent.onResize()
-Child.show()
- Child.wasShown()
- Child.onResize()
-Parent.detach()
- Child.willHide()
- Parent.willHide()
-Child.show()
-
-Running: testDetachOnWillHide
-Parent()
-Child()
-Parent.show()
- Parent.wasShown()
- Parent.onResize()
-Child.show()
- Child.wasShown()
- Child.onResize()
-Parent.detach()
- Child.willHide()
- Parent.willHide()
-Child.detach()
-
-Running: testShowDetachesFromPrevious
-Parent1()
-Parent2()
-Child()
-Parent1.show()
- Parent1.wasShown()
- Parent1.onResize()
-Parent2.show()
- Parent2.wasShown()
- Parent2.onResize()
-Child.show()
- Child.wasShown()
- Child.onResize()
-Child.show()
-Child.detach()
- Child.willHide()
- Child.wasShown()
- Child.onResize()
-
-Running: testResizeOnWasShown
-Parent()
-Child()
-Child.show()
-Parent.show()
- Parent.wasShown()
-Child.doResize()
- Child.wasShown()
- Parent.onResize()
- Child.onResize()
-Parent.detach()
- Child.willHide()
- Parent.willHide()
-
« no previous file with comments | « LayoutTests/inspector/view-events.html ('k') | LayoutTests/inspector/widget-events.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698