Index: third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js b/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js |
index f35a7cfb36048d9d1e676fc5c6e7d5f093b973cc..d696846f17f47e24198abda5a76ed4eb08a17acf 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js |
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ColorSwatch.js |
@@ -163,3 +163,16 @@ WebInspector.ColorSwatch._nextColorFormat = function(color, curFormat) |
return cf.RGBA; |
} |
} |
+ |
+WebInspector.BezierSwatch = {} |
+ |
+/** |
+ * @return {!Element} |
+ */ |
+WebInspector.BezierSwatch.create = function() |
+{ |
+ var element = createElementWithClass("span", "bezier-icon"); |
+ var root = WebInspector.createShadowRootWithCoreStyles(element, "ui/bezierSwatch.css"); |
+ root.createChild("span", "bezier-swatch"); |
+ return element; |
+} |