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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSURLImageValue.idl

Issue 2208283002: [Typed-OM] Add CSSURLImageValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@CSSProperties_Image
Patch Set: Rebase Created 4 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: third_party/WebKit/Source/core/css/cssom/CSSURLImageValue.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSSkew.idl b/third_party/WebKit/Source/core/css/cssom/CSSURLImageValue.idl
similarity index 60%
copy from third_party/WebKit/Source/core/css/cssom/CSSSkew.idl
copy to third_party/WebKit/Source/core/css/cssom/CSSURLImageValue.idl
index 674404923a2844254a5a366416bcb9398c124333..0b938ba7fe0dfa5f823aed89f873891875b19746 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSSkew.idl
+++ b/third_party/WebKit/Source/core/css/cssom/CSSURLImageValue.idl
@@ -3,10 +3,9 @@
// found in the LICENSE file.
[
- Constructor(double ax, double ay),
+ Constructor(DOMString url),
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM
-] interface CSSSkew : CSSTransformComponent {
- readonly attribute double ax;
- readonly attribute double ay;
+] interface CSSURLImageValue : CSSImageValue {
+ readonly attribute DOMString url;
};

Powered by Google App Engine
This is Rietveld 408576698