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

Side by Side Diff: Source/devtools/front_end/layers/LayerDetailsView.js

Issue 346603007: Remove position: sticky (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 WebInspector.LayerDetailsView.CompositingReasonDetail = { 53 WebInspector.LayerDetailsView.CompositingReasonDetail = {
54 "transform3D": WebInspector.UIString("Composition due to association with an element with a CSS 3D transform."), 54 "transform3D": WebInspector.UIString("Composition due to association with an element with a CSS 3D transform."),
55 "video": WebInspector.UIString("Composition due to association with a <video > element."), 55 "video": WebInspector.UIString("Composition due to association with a <video > element."),
56 "canvas": WebInspector.UIString("Composition due to the element being a <can vas> element."), 56 "canvas": WebInspector.UIString("Composition due to the element being a <can vas> element."),
57 "plugin": WebInspector.UIString("Composition due to association with a plugi n."), 57 "plugin": WebInspector.UIString("Composition due to association with a plugi n."),
58 "iFrame": WebInspector.UIString("Composition due to association with an <ifr ame> element."), 58 "iFrame": WebInspector.UIString("Composition due to association with an <ifr ame> element."),
59 "backfaceVisibilityHidden": WebInspector.UIString("Composition due to associ ation with an element with a \"backface-visibility: hidden\" style."), 59 "backfaceVisibilityHidden": WebInspector.UIString("Composition due to associ ation with an element with a \"backface-visibility: hidden\" style."),
60 "animation": WebInspector.UIString("Composition due to association with an a nimated element."), 60 "animation": WebInspector.UIString("Composition due to association with an a nimated element."),
61 "filters": WebInspector.UIString("Composition due to association with an ele ment with CSS filters applied."), 61 "filters": WebInspector.UIString("Composition due to association with an ele ment with CSS filters applied."),
62 "positionFixed": WebInspector.UIString("Composition due to association with an element with a \"position: fixed\" style."), 62 "positionFixed": WebInspector.UIString("Composition due to association with an element with a \"position: fixed\" style."),
63 // FIXME: Can we remove this entry now that position: sticky has been remove d?
63 "positionSticky": WebInspector.UIString("Composition due to association with an element with a \"position: sticky\" style."), 64 "positionSticky": WebInspector.UIString("Composition due to association with an element with a \"position: sticky\" style."),
64 "overflowScrollingTouch": WebInspector.UIString("Composition due to associat ion with an element with a \"overflow-scrolling: touch\" style."), 65 "overflowScrollingTouch": WebInspector.UIString("Composition due to associat ion with an element with a \"overflow-scrolling: touch\" style."),
65 "blending": WebInspector.UIString("Composition due to association with an el ement that has blend mode other than \"normal\"."), 66 "blending": WebInspector.UIString("Composition due to association with an el ement that has blend mode other than \"normal\"."),
66 "assumedOverlap": WebInspector.UIString("Composition due to association with an element that may overlap other composited elements."), 67 "assumedOverlap": WebInspector.UIString("Composition due to association with an element that may overlap other composited elements."),
67 "overlap": WebInspector.UIString("Composition due to association with an ele ment overlapping other composited elements."), 68 "overlap": WebInspector.UIString("Composition due to association with an ele ment overlapping other composited elements."),
68 "negativeZIndexChildren": WebInspector.UIString("Composition due to associat ion with an element with descendants that have a negative z-index."), 69 "negativeZIndexChildren": WebInspector.UIString("Composition due to associat ion with an element with descendants that have a negative z-index."),
69 "transformWithCompositedDescendants": WebInspector.UIString("Composition due to association with an element with composited descendants."), 70 "transformWithCompositedDescendants": WebInspector.UIString("Composition due to association with an element with composited descendants."),
70 "opacityWithCompositedDescendants": WebInspector.UIString("Composition due t o association with an element with opacity applied and composited descendants.") , 71 "opacityWithCompositedDescendants": WebInspector.UIString("Composition due t o association with an element with opacity applied and composited descendants.") ,
71 "maskWithCompositedDescendants": WebInspector.UIString("Composition due to a ssociation with a masked element and composited descendants."), 72 "maskWithCompositedDescendants": WebInspector.UIString("Composition due to a ssociation with a masked element and composited descendants."),
72 "reflectionWithCompositedDescendants": WebInspector.UIString("Composition du e to association with an element with a reflection and composited descendants.") , 73 "reflectionWithCompositedDescendants": WebInspector.UIString("Composition du e to association with an element with a reflection and composited descendants.") ,
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 span.title = WebInspector.LayerDetailsView.CompositingReasonDetail[c ompositingReasons[i]] || ""; 189 span.title = WebInspector.LayerDetailsView.CompositingReasonDetail[c ompositingReasons[i]] || "";
189 span.textContent = compositingReasons[i]; 190 span.textContent = compositingReasons[i];
190 fragment.appendChild(span); 191 fragment.appendChild(span);
191 } 192 }
192 this._compositingReasonsCell.removeChildren(); 193 this._compositingReasonsCell.removeChildren();
193 this._compositingReasonsCell.appendChild(fragment); 194 this._compositingReasonsCell.appendChild(fragment);
194 }, 195 },
195 196
196 __proto__: WebInspector.VBox.prototype 197 __proto__: WebInspector.VBox.prototype
197 } 198 }
OLDNEW
« no previous file with comments | « Source/core/rendering/style/RenderStyleConstants.h ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698