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

Unified Diff: tracing/tracing/ui/extras/chrome/cc/picture_debugger.html

Issue 3002533002: Switch tracing to new flexbox. (Closed)
Patch Set: Created 3 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: tracing/tracing/ui/extras/chrome/cc/picture_debugger.html
diff --git a/tracing/tracing/ui/extras/chrome/cc/picture_debugger.html b/tracing/tracing/ui/extras/chrome/cc/picture_debugger.html
index f1a9b4b218e67539571b5745dc4b9fc49816c74c..408a3d47af7bbdad3ad00ca54af454838ce16610 100644
--- a/tracing/tracing/ui/extras/chrome/cc/picture_debugger.html
+++ b/tracing/tracing/ui/extras/chrome/cc/picture_debugger.html
@@ -23,25 +23,25 @@ found in the LICENSE file.
<template id="tr-ui-e-chrome-cc-picture-debugger-template">
<style>
* /deep/ tr-ui-e-chrome-cc-picture-debugger {
- -webkit-flex: 1 1 auto;
- -webkit-flex-direction: row;
- display: -webkit-flex;
+ flex: 1 1 auto;
+ flex-direction: row;
+ display: flex;
}
* /deep/ tr-ui-e-chrome-cc-picture-debugger > tr-ui-a-generic-object-view {
- -webkit-flex-direction: column;
- display: -webkit-flex;
+ flex-direction: column;
+ display: flex;
width: 400px;
}
* /deep/ tr-ui-e-chrome-cc-picture-debugger > left-panel {
- -webkit-flex-direction: column;
- display: -webkit-flex;
+ flex-direction: column;
+ display: flex;
min-width: 300px;
}
* /deep/ tr-ui-e-chrome-cc-picture-debugger > left-panel > picture-info {
- -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
padding-top: 2px;
}
@@ -53,7 +53,7 @@ found in the LICENSE file.
}
* /deep/ tr-ui-e-chrome-cc-picture-debugger > tr-ui-b-drag-handle {
- -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
}
* /deep/ tr-ui-e-chrome-cc-picture-debugger .filename {
@@ -62,9 +62,9 @@ found in the LICENSE file.
}
* /deep/ tr-ui-e-chrome-cc-picture-debugger > right-panel {
- -webkit-flex: 1 1 auto;
- -webkit-flex-direction: column;
- display: -webkit-flex;
+ flex: 1 1 auto;
+ flex-direction: column;
+ display: flex;
}
* /deep/ tr-ui-e-chrome-cc-picture-debugger > right-panel >

Powered by Google App Engine
This is Rietveld 408576698