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

Unified Diff: LayoutTests/virtual/softwarecompositing/video/video-poster-expected.txt

Issue 348583003: Auto-rebaseline for r176651 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/virtual/softwarecompositing/tiled-layers-hidpi-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/virtual/softwarecompositing/video/video-poster-expected.txt
diff --git a/LayoutTests/virtual/softwarecompositing/video/video-poster-expected.txt b/LayoutTests/virtual/softwarecompositing/video/video-poster-expected.txt
index c5f6cb7bf7debf287c53741f1a750eb19eec1761..05caa7dd66aa92b7ac4a983cf6d30a39c34a27a4 100644
--- a/LayoutTests/virtual/softwarecompositing/video/video-poster-expected.txt
+++ b/LayoutTests/virtual/softwarecompositing/video/video-poster-expected.txt
@@ -2,48 +2,48 @@ A <video> should not have a layer until playback begins.
This test can not be run manually, it requires testRunner.layerTreeAsText.
Case: No src, no poster
-(GraphicsLayer
- (bounds 800.00 600.00)
- (children 1
- (GraphicsLayer
- (bounds 800.00 600.00)
- (contentsOpaque 1)
- (drawsContent 1)
- )
- )
-)
+{
+ "bounds": [800, 600],
+ "children": [
+ {
+ "bounds": [800, 600],
+ "contentsOpaque": true,
+ "drawsContent": true
+ }
+ ]
+}
Case: Displaying poster
-(GraphicsLayer
- (bounds 800.00 600.00)
- (children 1
- (GraphicsLayer
- (bounds 800.00 600.00)
- (contentsOpaque 1)
- (drawsContent 1)
- )
- )
-)
+{
+ "bounds": [800, 600],
+ "children": [
+ {
+ "bounds": [800, 600],
+ "contentsOpaque": true,
+ "drawsContent": true
+ }
+ ]
+}
Case: Displaying movie
-(GraphicsLayer
- (bounds 785.00 782.00)
- (children 1
- (GraphicsLayer
- (bounds 785.00 782.00)
- (contentsOpaque 1)
- (drawsContent 1)
- (children 1
- (GraphicsLayer
- (position 8.00 8.00)
- (bounds 352.00 288.00)
- )
- )
- )
- )
-)
+{
+ "bounds": [785, 782],
+ "children": [
+ {
+ "bounds": [785, 782],
+ "contentsOpaque": true,
+ "drawsContent": true,
+ "children": [
+ {
+ "position": [8, 8],
+ "bounds": [352, 288]
+ }
+ ]
+ }
+ ]
+}
« no previous file with comments | « LayoutTests/virtual/softwarecompositing/tiled-layers-hidpi-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698