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

Side by Side Diff: chrome/browser/resources/md_history/lazy_load.vulcanized.html

Issue 2592573002: MD Downloads: add first meaningful paint metrics to UMA (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
1 <html><head><!-- 1 <html><head><!--
2 @license 2 @license
3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><!-- 9 --><!--
10 @license 10 @license
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after
893 } 893 }
894 894
895 .action-button, .cancel-button { 895 .action-button, .cancel-button {
896 font-weight: 500; 896 font-weight: 500;
897 } 897 }
898 898
899 [actionable] { 899 [actionable] {
900 cursor: var(--cr-actionable_-_cursor); 900 cursor: var(--cr-actionable_-_cursor);
901 } 901 }
902 902
903 button[is='paper-icon-button-light'] {
904 -webkit-margin-end: var(--cr-paper-icon-button-margin_-_-webkit-margin-end); - webkit-margin-start: var(--cr-paper-icon-button-margin_-_-webkit-margin-start);
905 background-position: center;
906 background-repeat: no-repeat;
907 background-size: var(--cr-icon-size);
908 flex-shrink: 0;
909 height: var(--cr-icon-ripple-size);
910 width: var(--cr-icon-ripple-size);
911 }
912
913 button[is='paper-icon-button-light'].subpage-arrow {
914 background-image: url("chrome://resources/images/arrow_right.svg");
915 }
916
917 button[is='paper-icon-button-light'].icon-external {
918 background-image: url("chrome://resources/images/open_in_new.svg");
919 }
920
921 .subpage-arrow, .icon-external {
922 display: none;
923 }
924
925 paper-icon-button.subpage-arrow {
926 background-image: url("chrome://resources/images/arrow_right.svg");
927 }
928
929 [actionable] :-webkit-any(.subpage-arrow, .icon-external), [actionable]:-webkit- any(.subpage-arrow, .icon-external) {
930 display: block;
931 }
932
903 [scrollable] { 933 [scrollable] {
904 border-color: transparent; 934 border-color: transparent;
905 border-style: solid; 935 border-style: solid;
906 border-width: 1px 0; 936 border-width: 1px 0;
907 overflow-y: auto; 937 overflow-y: auto;
908 } 938 }
909 939
910 [scrollable].is-scrolled { 940 [scrollable].is-scrolled {
911 border-top-color: var(--google-grey-300); 941 border-top-color: var(--google-grey-300);
912 } 942 }
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 <div id="selectionBar" class$="[[_computeSelectionBarClass(noBar, alignB ottom)]]" on-transitionend="_onBarTransitionEnd"></div> 1457 <div id="selectionBar" class$="[[_computeSelectionBarClass(noBar, alignB ottom)]]" on-transitionend="_onBarTransitionEnd"></div>
1428 <content select="*"></content> 1458 <content select="*"></content>
1429 </div> 1459 </div>
1430 </div> 1460 </div>
1431 1461
1432 <paper-icon-button icon="paper-tabs:chevron-right" class$="[[_computeScrollB uttonClass(_rightHidden, scrollable, hideScrollButtons)]]" on-up="_onScrollButto nUp" on-down="_onRightScrollButtonDown" tabindex="-1"></paper-icon-button> 1462 <paper-icon-button icon="paper-tabs:chevron-right" class$="[[_computeScrollB uttonClass(_rightHidden, scrollable, hideScrollButtons)]]" on-up="_onScrollButto nUp" on-down="_onRightScrollButtonDown" tabindex="-1"></paper-icon-button>
1433 1463
1434 </template> 1464 </template>
1435 1465
1436 </dom-module> 1466 </dom-module>
1437 </div><script src="lazy_load.crisper.js"></script></body></html> 1467 </div><script src="lazy_load.crisper.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698