OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 #include "bindings/core/v8/ExceptionState.h" | 29 #include "bindings/core/v8/ExceptionState.h" |
30 #include "core/CSSPropertyNames.h" | 30 #include "core/CSSPropertyNames.h" |
31 #include "core/CSSValueKeywords.h" | 31 #include "core/CSSValueKeywords.h" |
32 #include "core/css/CSSToLengthConversionData.h" | 32 #include "core/css/CSSToLengthConversionData.h" |
33 #include "core/css/StylePropertySet.h" | 33 #include "core/css/StylePropertySet.h" |
34 #include "core/css/parser/CSSParser.h" | 34 #include "core/css/parser/CSSParser.h" |
35 #include "core/css/resolver/TransformBuilder.h" | 35 #include "core/css/resolver/TransformBuilder.h" |
36 #include "core/dom/ExceptionCode.h" | 36 #include "core/dom/ExceptionCode.h" |
37 #include "core/frame/UseCounter.h" | 37 #include "core/frame/UseCounter.h" |
38 #include "core/layout/style/ComputedStyle.h" | 38 #include "core/style/ComputedStyle.h" |
39 #include "core/layout/style/StyleInheritedData.h" | 39 #include "core/style/StyleInheritedData.h" |
40 #include "wtf/MathExtras.h" | 40 #include "wtf/MathExtras.h" |
41 | 41 |
42 namespace blink { | 42 namespace blink { |
43 | 43 |
44 PassRefPtrWillBeRawPtr<CSSMatrix> CSSMatrix::create(ExecutionContext* executionC
ontext, const String& s, ExceptionState& exceptionState) | 44 PassRefPtrWillBeRawPtr<CSSMatrix> CSSMatrix::create(ExecutionContext* executionC
ontext, const String& s, ExceptionState& exceptionState) |
45 { | 45 { |
46 UseCounter::count(executionContext, UseCounter::WebKitCSSMatrix); | 46 UseCounter::count(executionContext, UseCounter::WebKitCSSMatrix); |
47 return adoptRefWillBeNoop(new CSSMatrix(s, exceptionState)); | 47 return adoptRefWillBeNoop(new CSSMatrix(s, exceptionState)); |
48 } | 48 } |
49 | 49 |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 if (m_matrix.isAffine()) | 187 if (m_matrix.isAffine()) |
188 return String::format("matrix(%f, %f, %f, %f, %f, %f)", m_matrix.a(), m_
matrix.b(), m_matrix.c(), m_matrix.d(), m_matrix.e(), m_matrix.f()); | 188 return String::format("matrix(%f, %f, %f, %f, %f, %f)", m_matrix.a(), m_
matrix.b(), m_matrix.c(), m_matrix.d(), m_matrix.e(), m_matrix.f()); |
189 return String::format("matrix3d(%f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %f,
%f, %f, %f, %f, %f)", | 189 return String::format("matrix3d(%f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %f,
%f, %f, %f, %f, %f)", |
190 m_matrix.m11(), m_matrix.m12(), m_matrix.m13(), m_matrix.m14(), | 190 m_matrix.m11(), m_matrix.m12(), m_matrix.m13(), m_matrix.m14(), |
191 m_matrix.m21(), m_matrix.m22(), m_matrix.m23(), m_matrix.m24(), | 191 m_matrix.m21(), m_matrix.m22(), m_matrix.m23(), m_matrix.m24(), |
192 m_matrix.m31(), m_matrix.m32(), m_matrix.m33(), m_matrix.m34(), | 192 m_matrix.m31(), m_matrix.m32(), m_matrix.m33(), m_matrix.m34(), |
193 m_matrix.m41(), m_matrix.m42(), m_matrix.m43(), m_matrix.m44()); | 193 m_matrix.m41(), m_matrix.m42(), m_matrix.m43(), m_matrix.m44()); |
194 } | 194 } |
195 | 195 |
196 } // namespace blink | 196 } // namespace blink |
OLD | NEW |