| Differences between
and this patch
- a/Source/WebCore/ChangeLog +78 lines
Lines 1-3 a/Source/WebCore/ChangeLog_sec1
1
2021-09-09  Johnson Zhou  <qiaosong_zhou@apple.com>
2
3
        Addition of CSSNumericValue and subclasses. (CSS Typed OM)
4
        https://bugs.webkit.org/show_bug.cgi?id=230031
5
6
        Reviewed by NOBODY (OOPS!).
7
8
        * WebCore.xcodeproj/project.pbxproj:
9
        * css/typedom/CSSKeywordValue.h:
10
        * css/typedom/CSSNumericValue.cpp:
11
        (WebCore::CSSNumericValue::add):
12
        (WebCore::CSSNumericValue::sub):
13
        (WebCore::CSSNumericValue::mul):
14
        (WebCore::CSSNumericValue::div):
15
        (WebCore::CSSNumericValue::min):
16
        (WebCore::CSSNumericValue::max):
17
        (WebCore::CSSNumericValue::rectifyNumberish):
18
        (WebCore::CSSNumericValue::equals):
19
        (WebCore::CSSNumericValue::to):
20
        (WebCore::CSSNumericValue::toSum):
21
        (WebCore::CSSNumericValue::type):
22
        (WebCore::CSSNumericValue::parse):
23
        * css/typedom/CSSNumericValue.h:
24
        * css/typedom/CSSNumericValue.idl:
25
        * css/typedom/numeric/CSSMathInvert.cpp:
26
        (WebCore::CSSMathInvert::create):
27
        (WebCore::CSSMathInvert::CSSMathInvert):
28
        * css/typedom/numeric/CSSMathInvert.h:
29
        (isType):
30
        * css/typedom/numeric/CSSMathMax.cpp:
31
        (WebCore::CSSMathMax::create):
32
        (WebCore::CSSMathMax::CSSMathMax):
33
        (WebCore::CSSMathMax::values):
34
        * css/typedom/numeric/CSSMathMax.h:
35
        (isType):
36
        (WebCore::CSSMathMax::values): Deleted.
37
        * css/typedom/numeric/CSSMathMin.cpp:
38
        (WebCore::CSSMathMin::create):
39
        (WebCore::CSSMathMin::CSSMathMin):
40
        (WebCore::CSSMathMin::values):
41
        * css/typedom/numeric/CSSMathMin.h:
42
        (isType):
43
        (WebCore::CSSMathMin::values): Deleted.
44
        * css/typedom/numeric/CSSMathMin.idl:
45
        * css/typedom/numeric/CSSMathNegate.cpp:
46
        (WebCore::CSSMathNegate::create):
47
        (WebCore::CSSMathNegate::CSSMathNegate):
48
        * css/typedom/numeric/CSSMathNegate.h:
49
        (isType):
50
        * css/typedom/numeric/CSSMathOperator.cpp:
51
        * css/typedom/numeric/CSSMathOperator.h:
52
        * css/typedom/numeric/CSSMathProduct.cpp:
53
        (WebCore::CSSMathProduct::create):
54
        (WebCore::CSSMathProduct::CSSMathProduct):
55
        (WebCore::CSSMathProduct::values):
56
        * css/typedom/numeric/CSSMathProduct.h:
57
        (isType):
58
        (WebCore::CSSMathProduct::values): Deleted.
59
        * css/typedom/numeric/CSSMathSum.cpp:
60
        (WebCore::CSSMathSum::create):
61
        (WebCore::CSSMathSum::CSSMathSum):
62
        (WebCore::CSSMathSum::values):
63
        * css/typedom/numeric/CSSMathSum.h:
64
        (isType):
65
        (WebCore::CSSMathSum::values): Deleted.
66
        * css/typedom/numeric/CSSMathValue.cpp:
67
        (WebCore::CSSMathValue::CSSMathValue):
68
        * css/typedom/numeric/CSSMathValue.h:
69
        (WebCore::CSSMathValue::getOperator const):
70
        (isType):
71
        * css/typedom/numeric/CSSNumericArray.cpp:
72
        (WebCore::CSSNumericArray::create):
73
        (WebCore::CSSNumericArray::CSSNumericArray):
74
        * css/typedom/numeric/CSSNumericArray.h:
75
        * css/typedom/numeric/CSSNumericBaseType.cpp: Copied from Source/WebCore/css/typedom/numeric/CSSMathMin.cpp.
76
        * css/typedom/numeric/CSSNumericType.cpp: Copied from Source/WebCore/css/typedom/numeric/CSSMathMin.cpp.
77
        * css/typedom/numeric/CSSNumericType.idl:
78
1
2021-09-06  Alan Bujtas  <zalan@apple.com>
79
2021-09-06  Alan Bujtas  <zalan@apple.com>
2
80
3
        [LFC][Integration] Remove redundant NonRootInlineBox
81
        [LFC][Integration] Remove redundant NonRootInlineBox
- a/Source/WebCore/CMakeLists.txt +16 lines
Lines 82-87 set(WebCore_PRIVATE_INCLUDE_DIRECTORIES a/Source/WebCore/CMakeLists.txt_sec1
82
    "${WEBCORE_DIR}/css/calc"
82
    "${WEBCORE_DIR}/css/calc"
83
    "${WEBCORE_DIR}/css/parser"
83
    "${WEBCORE_DIR}/css/parser"
84
    "${WEBCORE_DIR}/css/typedom"
84
    "${WEBCORE_DIR}/css/typedom"
85
    "${WEBCORE_DIR}/css/typedom/numeric"
85
    "${WEBCORE_DIR}/cssjit"
86
    "${WEBCORE_DIR}/cssjit"
86
    "${WEBCORE_DIR}/display"
87
    "${WEBCORE_DIR}/display"
87
    "${WEBCORE_DIR}/display/compositing"
88
    "${WEBCORE_DIR}/display/compositing"
Lines 214-219 set(WebCore_IDL_INCLUDES a/Source/WebCore/CMakeLists.txt_sec2
214
215
215
    css/typedom
216
    css/typedom
216
217
218
    css/typedom/numeric
219
217
    html/canvas
220
    html/canvas
218
    html/shadow
221
    html/shadow
219
    html/track
222
    html/track
Lines 736-741 set(WebCore_NON_SVG_IDL_FILES a/Source/WebCore/CMakeLists.txt_sec3
736
    css/typedom/StylePropertyMap.idl
739
    css/typedom/StylePropertyMap.idl
737
    css/typedom/StylePropertyMapReadOnly.idl
740
    css/typedom/StylePropertyMapReadOnly.idl
738
741
742
    css/typedom/numeric/CSSMathInvert.idl
743
    css/typedom/numeric/CSSMathMax.idl
744
    css/typedom/numeric/CSSMathMin.idl
745
    css/typedom/numeric/CSSMathNegate.idl
746
    css/typedom/numeric/CSSMathNumericArray.idl
747
    css/typedom/numeric/CSSMathOperator.idl
748
    css/typedom/numeric/CSSMathProduct.idl
749
    css/typedom/numeric/CSSMathSum.idl
750
    css/typedom/numeric/CSSMathValue.idl
751
    css/typedom/numeric/CSSNumericArray.idl
752
    css/typedom/numeric/CSSNumericBaseType.idl
753
    css/typedom/numeric/CSSNumericType.idl
754
739
    dom/AbortAlgorithm.idl
755
    dom/AbortAlgorithm.idl
740
    dom/AbortController.idl
756
    dom/AbortController.idl
741
    dom/AbortSignal.idl
757
    dom/AbortSignal.idl
- a/Source/WebCore/DerivedSources-input.xcfilelist +11 lines
Lines 744-749 $(PROJECT_DIR)/css/typedom/CSSUnitValue.idl a/Source/WebCore/DerivedSources-input.xcfilelist_sec1
744
$(PROJECT_DIR)/css/typedom/CSSUnparsedValue.idl
744
$(PROJECT_DIR)/css/typedom/CSSUnparsedValue.idl
745
$(PROJECT_DIR)/css/typedom/StylePropertyMap.idl
745
$(PROJECT_DIR)/css/typedom/StylePropertyMap.idl
746
$(PROJECT_DIR)/css/typedom/StylePropertyMapReadOnly.idl
746
$(PROJECT_DIR)/css/typedom/StylePropertyMapReadOnly.idl
747
$(PROJECT_DIR)/css/typedom/numeric/CSSMathInvert.idl
748
$(PROJECT_DIR)/css/typedom/numeric/CSSMathMax.idl
749
$(PROJECT_DIR)/css/typedom/numeric/CSSMathMin.idl
750
$(PROJECT_DIR)/css/typedom/numeric/CSSMathNegate.idl
751
$(PROJECT_DIR)/css/typedom/numeric/CSSMathOperator.idl
752
$(PROJECT_DIR)/css/typedom/numeric/CSSMathProduct.idl
753
$(PROJECT_DIR)/css/typedom/numeric/CSSMathSum.idl
754
$(PROJECT_DIR)/css/typedom/numeric/CSSMathValue.idl
755
$(PROJECT_DIR)/css/typedom/numeric/CSSNumericArray.idl
756
$(PROJECT_DIR)/css/typedom/numeric/CSSNumericBaseType.idl
757
$(PROJECT_DIR)/css/typedom/numeric/CSSNumericType.idl
747
$(PROJECT_DIR)/dom/AbortAlgorithm.idl
758
$(PROJECT_DIR)/dom/AbortAlgorithm.idl
748
$(PROJECT_DIR)/dom/AbortController.idl
759
$(PROJECT_DIR)/dom/AbortController.idl
749
$(PROJECT_DIR)/dom/AbortSignal.idl
760
$(PROJECT_DIR)/dom/AbortSignal.idl
- a/Source/WebCore/DerivedSources-output.xcfilelist +22 lines
Lines 310-315 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSKeyframesRule.cpp a/Source/WebCore/DerivedSources-output.xcfilelist_sec1
310
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSKeyframesRule.h
310
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSKeyframesRule.h
311
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSKeywordValue.cpp
311
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSKeywordValue.cpp
312
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSKeywordValue.h
312
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSKeywordValue.h
313
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathInvert.cpp
314
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathInvert.h
315
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathMax.cpp
316
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathMax.h
317
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathMin.cpp
318
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathMin.h
319
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathNegate.cpp
320
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathNegate.h
321
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathOperator.cpp
322
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathOperator.h
323
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathProduct.cpp
324
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathProduct.h
325
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathSum.cpp
326
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathSum.h
327
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathValue.cpp
328
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMathValue.h
329
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSNumericArray.cpp
330
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSNumericArray.h
331
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSNumericBaseType.cpp
332
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSNumericBaseType.h
333
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSNumericType.cpp
334
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSNumericType.h
313
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMediaRule.cpp
335
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMediaRule.cpp
314
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMediaRule.h
336
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSMediaRule.h
315
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSNamespaceRule.cpp
337
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSCSSNamespaceRule.cpp
- a/Source/WebCore/DerivedSources.make +11 lines
Lines 615-620 JS_BINDING_IDLS := \ a/Source/WebCore/DerivedSources.make_sec1
615
    $(WebCore)/css/typedom/CSSUnitValue.idl \
615
    $(WebCore)/css/typedom/CSSUnitValue.idl \
616
    $(WebCore)/css/typedom/CSSUnparsedValue.idl \
616
    $(WebCore)/css/typedom/CSSUnparsedValue.idl \
617
    $(WebCore)/css/typedom/CSSOMVariableReferenceValue.idl \
617
    $(WebCore)/css/typedom/CSSOMVariableReferenceValue.idl \
618
    $(WebCore)/css/typedom/numeric/CSSMathInvert.idl \
619
    $(WebCore)/css/typedom/numeric/CSSMathMax.idl \
620
    $(WebCore)/css/typedom/numeric/CSSMathMin.idl \
621
	$(WebCore)/css/typedom/numeric/CSSMathNegate.idl \
622
    $(WebCore)/css/typedom/numeric/CSSMathOperator.idl \
623
    $(WebCore)/css/typedom/numeric/CSSMathProduct.idl \
624
    $(WebCore)/css/typedom/numeric/CSSMathSum.idl \
625
    $(WebCore)/css/typedom/numeric/CSSMathValue.idl \
626
    $(WebCore)/css/typedom/numeric/CSSNumericArray.idl \
627
    $(WebCore)/css/typedom/numeric/CSSNumericBaseType.idl \
628
    $(WebCore)/css/typedom/numeric/CSSNumericType.idl \
618
    $(WebCore)/dom/AbortAlgorithm.idl \
629
    $(WebCore)/dom/AbortAlgorithm.idl \
619
    $(WebCore)/dom/AbortController.idl \
630
    $(WebCore)/dom/AbortController.idl \
620
    $(WebCore)/dom/AbortSignal.idl \
631
    $(WebCore)/dom/AbortSignal.idl \
- a/Source/WebCore/Sources.txt +22 lines
Lines 779-784 css/typedom/CSSStyleValue.cpp a/Source/WebCore/Sources.txt_sec1
779
css/typedom/CSSUnitValue.cpp
779
css/typedom/CSSUnitValue.cpp
780
css/typedom/CSSUnparsedValue.cpp
780
css/typedom/CSSUnparsedValue.cpp
781
css/typedom/CSSOMVariableReferenceValue.cpp
781
css/typedom/CSSOMVariableReferenceValue.cpp
782
css/typedom/numeric/CSSMathInvert.cpp
783
css/typedom/numeric/CSSMathMax.cpp
784
css/typedom/numeric/CSSMathMin.cpp
785
css/typedom/numeric/CSSMathNegate.cpp
786
css/typedom/numeric/CSSMathOperator.cpp
787
css/typedom/numeric/CSSMathProduct.cpp
788
css/typedom/numeric/CSSMathSum.cpp
789
css/typedom/numeric/CSSMathValue.cpp
790
css/typedom/numeric/CSSNumericArray.cpp
791
css/typedom/numeric/CSSNumericBaseType.cpp
792
css/typedom/numeric/CSSNumericType.cpp
782
cssjit/SelectorCompiler.cpp
793
cssjit/SelectorCompiler.cpp
783
display/compositing/DisplayLayerController.cpp
794
display/compositing/DisplayLayerController.cpp
784
display/css/DisplayBox.cpp
795
display/css/DisplayBox.cpp
Lines 3607-3612 JSTransitionEvent.cpp a/Source/WebCore/Sources.txt_sec2
3607
JSTreeWalker.cpp
3618
JSTreeWalker.cpp
3608
JSCSSKeywordValue.cpp
3619
JSCSSKeywordValue.cpp
3609
JSCSSStyleImageValue.cpp
3620
JSCSSStyleImageValue.cpp
3621
JSCSSMathInvert.cpp
3622
JSCSSMathMax.cpp
3623
JSCSSMathMin.cpp
3624
JSCSSMathNegate.cpp
3625
JSCSSMathOperator.cpp
3626
JSCSSMathProduct.cpp
3627
JSCSSMathSum.cpp
3628
JSCSSMathValue.cpp
3629
JSCSSNumericArray.cpp
3630
JSCSSNumericBaseType.cpp
3631
JSCSSNumericType.cpp
3610
JSCSSNumericValue.cpp
3632
JSCSSNumericValue.cpp
3611
JSCSSOMVariableReferenceValue.cpp
3633
JSCSSOMVariableReferenceValue.cpp
3612
JSCSSStyleValue.cpp
3634
JSCSSStyleValue.cpp
- a/Source/WebCore/WebCore.xcodeproj/project.pbxproj +96 lines
Lines 751-756 a/Source/WebCore/WebCore.xcodeproj/project.pbxproj_sec1
751
		2A4107A426CB66F8003BF797 /* CSSKeywordValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4107A326CB66EE003BF797 /* CSSKeywordValue.h */; };
751
		2A4107A426CB66F8003BF797 /* CSSKeywordValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4107A326CB66EE003BF797 /* CSSKeywordValue.h */; };
752
		2ABFFFF326C535C00048875B /* CSSOMVariableReferenceValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABFFFF126C535BD0048875B /* CSSOMVariableReferenceValue.h */; };
752
		2ABFFFF326C535C00048875B /* CSSOMVariableReferenceValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABFFFF126C535BD0048875B /* CSSOMVariableReferenceValue.h */; };
753
		2ACB4D2B26DC4ACE00BEB753 /* CSSNumericFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACB4D2726DC4AB200BEB753 /* CSSNumericFactory.h */; };
753
		2ACB4D2B26DC4ACE00BEB753 /* CSSNumericFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACB4D2726DC4AB200BEB753 /* CSSNumericFactory.h */; };
754
		2AEF6FD326E7ECA500326D02 /* CSSMathInvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FC626E716EE00326D02 /* CSSMathInvert.h */; };
755
		2AEF6FD426E7ECAA00326D02 /* CSSMathMax.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FBD26E716EE00326D02 /* CSSMathMax.h */; };
756
		2AEF6FD526E7ECAE00326D02 /* CSSMathMin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FCA26E716EE00326D02 /* CSSMathMin.h */; };
757
		2AEF6FD626E7ECB400326D02 /* CSSMathNegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FD226E7EC9B00326D02 /* CSSMathNegate.h */; };
758
		2AEF6FD726E7ECB800326D02 /* CSSMathOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FC526E716EE00326D02 /* CSSMathOperator.h */; };
759
		2AEF6FD826E7ECBC00326D02 /* CSSMathProduct.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FC226E716EE00326D02 /* CSSMathProduct.h */; };
760
		2AEF6FD926E7ECC000326D02 /* CSSMathSum.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FC126E716EE00326D02 /* CSSMathSum.h */; };
761
		2AEF6FDA26E7ECC300326D02 /* CSSMathValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FC726E716EE00326D02 /* CSSMathValue.h */; };
762
		2AEF6FDB26E7ECC700326D02 /* CSSNumericArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FBF26E716EE00326D02 /* CSSNumericArray.h */; };
763
		2AEF6FDC26E7ECCC00326D02 /* CSSNumericBaseType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FCF26E71F2E00326D02 /* CSSNumericBaseType.h */; };
764
		2AEF6FDD26E7ECCF00326D02 /* CSSNumericType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF6FCE26E71F2D00326D02 /* CSSNumericType.h */; };
754
		2B365C841525119E0091D27B /* RenderSVGEllipse.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4235A015250F6000DBBCD8 /* RenderSVGEllipse.h */; };
765
		2B365C841525119E0091D27B /* RenderSVGEllipse.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4235A015250F6000DBBCD8 /* RenderSVGEllipse.h */; };
755
		2BE8E2C712A589EC00FAD550 /* HTMLMetaCharsetParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE8E2C612A589EC00FAD550 /* HTMLMetaCharsetParser.h */; };
766
		2BE8E2C712A589EC00FAD550 /* HTMLMetaCharsetParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE8E2C612A589EC00FAD550 /* HTMLMetaCharsetParser.h */; };
756
		2C85653424C0F73C00A37673 /* FilterEffectRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C85653324C0F73C00A37673 /* FilterEffectRenderer.h */; };
767
		2C85653424C0F73C00A37673 /* FilterEffectRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C85653324C0F73C00A37673 /* FilterEffectRenderer.h */; };
Lines 7213-7218 a/Source/WebCore/WebCore.xcodeproj/project.pbxproj_sec2
7213
		2ACB4D2726DC4AB200BEB753 /* CSSNumericFactory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSNumericFactory.h; sourceTree = "<group>"; };
7224
		2ACB4D2726DC4AB200BEB753 /* CSSNumericFactory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSNumericFactory.h; sourceTree = "<group>"; };
7214
		2ACB4D2926DC4AB300BEB753 /* CSSNumericFactory.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSNumericFactory.cpp; sourceTree = "<group>"; };
7225
		2ACB4D2926DC4AB300BEB753 /* CSSNumericFactory.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSNumericFactory.cpp; sourceTree = "<group>"; };
7215
		2ACB4D2C26DDAB8E00BEB753 /* DOMCSSNamespace+CSSNumericFactory.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DOMCSSNamespace+CSSNumericFactory.idl"; sourceTree = "<group>"; };
7226
		2ACB4D2C26DDAB8E00BEB753 /* DOMCSSNamespace+CSSNumericFactory.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "DOMCSSNamespace+CSSNumericFactory.idl"; sourceTree = "<group>"; };
7227
		2AEF6FBC26E716EE00326D02 /* CSSMathProduct.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSMathProduct.idl; sourceTree = "<group>"; };
7228
		2AEF6FBD26E716EE00326D02 /* CSSMathMax.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSMathMax.h; sourceTree = "<group>"; };
7229
		2AEF6FBE26E716EE00326D02 /* CSSMathValue.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSMathValue.idl; sourceTree = "<group>"; };
7230
		2AEF6FBF26E716EE00326D02 /* CSSNumericArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSNumericArray.h; sourceTree = "<group>"; };
7231
		2AEF6FC026E716EE00326D02 /* CSSMathMax.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSMathMax.idl; sourceTree = "<group>"; };
7232
		2AEF6FC126E716EE00326D02 /* CSSMathSum.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSMathSum.h; sourceTree = "<group>"; };
7233
		2AEF6FC226E716EE00326D02 /* CSSMathProduct.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSMathProduct.h; sourceTree = "<group>"; };
7234
		2AEF6FC326E716EE00326D02 /* CSSMathSum.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSMathSum.idl; sourceTree = "<group>"; };
7235
		2AEF6FC426E716EE00326D02 /* CSSNumericArray.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSNumericArray.idl; sourceTree = "<group>"; };
7236
		2AEF6FC526E716EE00326D02 /* CSSMathOperator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSMathOperator.h; sourceTree = "<group>"; };
7237
		2AEF6FC626E716EE00326D02 /* CSSMathInvert.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSMathInvert.h; sourceTree = "<group>"; };
7238
		2AEF6FC726E716EE00326D02 /* CSSMathValue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSMathValue.h; sourceTree = "<group>"; };
7239
		2AEF6FC826E716EE00326D02 /* CSSMathMin.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSMathMin.idl; sourceTree = "<group>"; };
7240
		2AEF6FC926E716EE00326D02 /* CSSMathInvert.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSMathInvert.idl; sourceTree = "<group>"; };
7241
		2AEF6FCA26E716EE00326D02 /* CSSMathMin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSMathMin.h; sourceTree = "<group>"; };
7242
		2AEF6FCB26E716EE00326D02 /* CSSMathOperator.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSMathOperator.idl; sourceTree = "<group>"; };
7243
		2AEF6FCD26E71F2D00326D02 /* CSSNumericBaseType.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSNumericBaseType.idl; sourceTree = "<group>"; };
7244
		2AEF6FCE26E71F2D00326D02 /* CSSNumericType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSNumericType.h; sourceTree = "<group>"; };
7245
		2AEF6FCF26E71F2E00326D02 /* CSSNumericBaseType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSNumericBaseType.h; sourceTree = "<group>"; };
7246
		2AEF6FD026E71F2E00326D02 /* CSSNumericType.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSNumericType.idl; sourceTree = "<group>"; };
7247
		2AEF6FD126E7EC9B00326D02 /* CSSMathNegate.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = CSSMathNegate.idl; sourceTree = "<group>"; };
7248
		2AEF6FD226E7EC9B00326D02 /* CSSMathNegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSSMathNegate.h; sourceTree = "<group>"; };
7249
		2AEF6FDE26E801B900326D02 /* CSSMathInvert.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSMathInvert.cpp; sourceTree = "<group>"; };
7250
		2AEF6FDF26E802EF00326D02 /* CSSMathOperator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSMathOperator.cpp; sourceTree = "<group>"; };
7251
		2AEF6FE026E802EF00326D02 /* CSSNumericArray.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSNumericArray.cpp; sourceTree = "<group>"; };
7252
		2AEF6FE126E802F000326D02 /* CSSMathMax.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSMathMax.cpp; sourceTree = "<group>"; };
7253
		2AEF6FE226E802F000326D02 /* CSSMathMin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSMathMin.cpp; sourceTree = "<group>"; };
7254
		2AEF6FE326E802F000326D02 /* CSSMathNegate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSMathNegate.cpp; sourceTree = "<group>"; };
7255
		2AEF6FE426E802F000326D02 /* CSSMathProduct.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSMathProduct.cpp; sourceTree = "<group>"; };
7256
		2AEF6FE526E802F100326D02 /* CSSMathSum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSMathSum.cpp; sourceTree = "<group>"; };
7257
		2AEF6FE626E802F100326D02 /* CSSMathValue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSMathValue.cpp; sourceTree = "<group>"; };
7258
		2AFD1DEB26E979E2004A1FA1 /* CSSNumericBaseType.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSNumericBaseType.cpp; sourceTree = "<group>"; };
7259
		2AFD1DED26E979E3004A1FA1 /* CSSNumericType.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CSSNumericType.cpp; sourceTree = "<group>"; };
7216
		2B42359F15250F6000DBBCD8 /* RenderSVGEllipse.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGEllipse.cpp; sourceTree = "<group>"; };
7260
		2B42359F15250F6000DBBCD8 /* RenderSVGEllipse.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGEllipse.cpp; sourceTree = "<group>"; };
7217
		2B4235A015250F6000DBBCD8 /* RenderSVGEllipse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderSVGEllipse.h; sourceTree = "<group>"; };
7261
		2B4235A015250F6000DBBCD8 /* RenderSVGEllipse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderSVGEllipse.h; sourceTree = "<group>"; };
7218
		2BE8E2C612A589EC00FAD550 /* HTMLMetaCharsetParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLMetaCharsetParser.h; sourceTree = "<group>"; };
7262
		2BE8E2C612A589EC00FAD550 /* HTMLMetaCharsetParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLMetaCharsetParser.h; sourceTree = "<group>"; };
Lines 19116-19121 a/Source/WebCore/WebCore.xcodeproj/project.pbxproj_sec3
19116
			path = isolatedtree;
19160
			path = isolatedtree;
19117
			sourceTree = "<group>";
19161
			sourceTree = "<group>";
19118
		};
19162
		};
19163
		2AEF6FBB26E716EE00326D02 /* numeric */ = {
19164
			isa = PBXGroup;
19165
			children = (
19166
				2AEF6FDE26E801B900326D02 /* CSSMathInvert.cpp */,
19167
				2AEF6FC626E716EE00326D02 /* CSSMathInvert.h */,
19168
				2AEF6FC926E716EE00326D02 /* CSSMathInvert.idl */,
19169
				2AEF6FE126E802F000326D02 /* CSSMathMax.cpp */,
19170
				2AEF6FBD26E716EE00326D02 /* CSSMathMax.h */,
19171
				2AEF6FC026E716EE00326D02 /* CSSMathMax.idl */,
19172
				2AEF6FE226E802F000326D02 /* CSSMathMin.cpp */,
19173
				2AEF6FCA26E716EE00326D02 /* CSSMathMin.h */,
19174
				2AEF6FC826E716EE00326D02 /* CSSMathMin.idl */,
19175
				2AEF6FE326E802F000326D02 /* CSSMathNegate.cpp */,
19176
				2AEF6FD226E7EC9B00326D02 /* CSSMathNegate.h */,
19177
				2AEF6FD126E7EC9B00326D02 /* CSSMathNegate.idl */,
19178
				2AEF6FDF26E802EF00326D02 /* CSSMathOperator.cpp */,
19179
				2AEF6FC526E716EE00326D02 /* CSSMathOperator.h */,
19180
				2AEF6FCB26E716EE00326D02 /* CSSMathOperator.idl */,
19181
				2AEF6FE426E802F000326D02 /* CSSMathProduct.cpp */,
19182
				2AEF6FC226E716EE00326D02 /* CSSMathProduct.h */,
19183
				2AEF6FBC26E716EE00326D02 /* CSSMathProduct.idl */,
19184
				2AEF6FE526E802F100326D02 /* CSSMathSum.cpp */,
19185
				2AEF6FC126E716EE00326D02 /* CSSMathSum.h */,
19186
				2AEF6FC326E716EE00326D02 /* CSSMathSum.idl */,
19187
				2AEF6FE626E802F100326D02 /* CSSMathValue.cpp */,
19188
				2AEF6FC726E716EE00326D02 /* CSSMathValue.h */,
19189
				2AEF6FBE26E716EE00326D02 /* CSSMathValue.idl */,
19190
				2AEF6FE026E802EF00326D02 /* CSSNumericArray.cpp */,
19191
				2AEF6FBF26E716EE00326D02 /* CSSNumericArray.h */,
19192
				2AEF6FC426E716EE00326D02 /* CSSNumericArray.idl */,
19193
				2AFD1DEB26E979E2004A1FA1 /* CSSNumericBaseType.cpp */,
19194
				2AEF6FCF26E71F2E00326D02 /* CSSNumericBaseType.h */,
19195
				2AEF6FCD26E71F2D00326D02 /* CSSNumericBaseType.idl */,
19196
				2AFD1DED26E979E3004A1FA1 /* CSSNumericType.cpp */,
19197
				2AEF6FCE26E71F2D00326D02 /* CSSNumericType.h */,
19198
				2AEF6FD026E71F2E00326D02 /* CSSNumericType.idl */,
19199
			);
19200
			path = numeric;
19201
			sourceTree = "<group>";
19202
		};
19119
		2CE1189824C2402C003770E9 /* coreimage */ = {
19203
		2CE1189824C2402C003770E9 /* coreimage */ = {
19120
			isa = PBXGroup;
19204
			isa = PBXGroup;
19121
			children = (
19205
			children = (
Lines 20179-20184 a/Source/WebCore/WebCore.xcodeproj/project.pbxproj_sec4
20179
		4BAFD0DA21921EAD00C0AB64 /* typedom */ = {
20263
		4BAFD0DA21921EAD00C0AB64 /* typedom */ = {
20180
			isa = PBXGroup;
20264
			isa = PBXGroup;
20181
			children = (
20265
			children = (
20266
				2AEF6FBB26E716EE00326D02 /* numeric */,
20182
				2A4107A026CB66ED003BF797 /* CSSKeywordValue.cpp */,
20267
				2A4107A026CB66ED003BF797 /* CSSKeywordValue.cpp */,
20183
				2A4107A326CB66EE003BF797 /* CSSKeywordValue.h */,
20268
				2A4107A326CB66EE003BF797 /* CSSKeywordValue.h */,
20184
				2A4107A226CB66ED003BF797 /* CSSKeywordValue.idl */,
20269
				2A4107A226CB66ED003BF797 /* CSSKeywordValue.idl */,
Lines 31645-31654 a/Source/WebCore/WebCore.xcodeproj/project.pbxproj_sec5
31645
				2A4107A426CB66F8003BF797 /* CSSKeywordValue.h in Headers */,
31730
				2A4107A426CB66F8003BF797 /* CSSKeywordValue.h in Headers */,
31646
				BC772E131331620C001EC9CE /* CSSLineBoxContainValue.h in Headers */,
31731
				BC772E131331620C001EC9CE /* CSSLineBoxContainValue.h in Headers */,
31647
				946D374A1D6D06280077084F /* CSSMarkup.h in Headers */,
31732
				946D374A1D6D06280077084F /* CSSMarkup.h in Headers */,
31733
				2AEF6FD326E7ECA500326D02 /* CSSMathInvert.h in Headers */,
31734
				2AEF6FD426E7ECAA00326D02 /* CSSMathMax.h in Headers */,
31735
				2AEF6FD526E7ECAE00326D02 /* CSSMathMin.h in Headers */,
31736
				2AEF6FD626E7ECB400326D02 /* CSSMathNegate.h in Headers */,
31737
				2AEF6FD726E7ECB800326D02 /* CSSMathOperator.h in Headers */,
31738
				2AEF6FD826E7ECBC00326D02 /* CSSMathProduct.h in Headers */,
31739
				2AEF6FD926E7ECC000326D02 /* CSSMathSum.h in Headers */,
31740
				2AEF6FDA26E7ECC300326D02 /* CSSMathValue.h in Headers */,
31648
				A80E6D030A1989CA007FB8C5 /* CSSMediaRule.h in Headers */,
31741
				A80E6D030A1989CA007FB8C5 /* CSSMediaRule.h in Headers */,
31649
				314BE3A11B30F6B700141982 /* CSSNamedImageValue.h in Headers */,
31742
				314BE3A11B30F6B700141982 /* CSSNamedImageValue.h in Headers */,
31650
				94E839511DFB2A0E007BC6A7 /* CSSNamespaceRule.h in Headers */,
31743
				94E839511DFB2A0E007BC6A7 /* CSSNamespaceRule.h in Headers */,
31744
				2AEF6FDB26E7ECC700326D02 /* CSSNumericArray.h in Headers */,
31745
				2AEF6FDC26E7ECCC00326D02 /* CSSNumericBaseType.h in Headers */,
31651
				2ACB4D2B26DC4ACE00BEB753 /* CSSNumericFactory.h in Headers */,
31746
				2ACB4D2B26DC4ACE00BEB753 /* CSSNumericFactory.h in Headers */,
31747
				2AEF6FDD26E7ECCF00326D02 /* CSSNumericType.h in Headers */,
31652
				4BAFD0E0219220AB00C0AB64 /* CSSNumericValue.h in Headers */,
31748
				4BAFD0E0219220AB00C0AB64 /* CSSNumericValue.h in Headers */,
31653
				2ABFFFF326C535C00048875B /* CSSOMVariableReferenceValue.h in Headers */,
31749
				2ABFFFF326C535C00048875B /* CSSOMVariableReferenceValue.h in Headers */,
31654
				A80E6D000A1989CA007FB8C5 /* CSSPageRule.h in Headers */,
31750
				A80E6D000A1989CA007FB8C5 /* CSSPageRule.h in Headers */,
- a/Source/WebCore/bindings/js/WebCoreBuiltinNames.h +8 lines
Lines 80-85 namespace WebCore { a/Source/WebCore/bindings/js/WebCoreBuiltinNames.h_sec1
80
    macro(CSSCounterStyleRule) \
80
    macro(CSSCounterStyleRule) \
81
    macro(CSSImageValue) \
81
    macro(CSSImageValue) \
82
    macro(CSSKeywordValue) \
82
    macro(CSSKeywordValue) \
83
    macro(CSSMathInvert) \
84
    macro(CSSMathMax) \
85
    macro(CSSMathMin) \
86
    macro(CSSMathNegate) \
87
    macro(CSSMathProduct) \
88
    macro(CSSMathSum) \
89
    macro(CSSMathValue) \
90
    macro(CSSNumericArray) \
83
    macro(CSSNumericValue) \
91
    macro(CSSNumericValue) \
84
    macro(CSSPaintSize) \
92
    macro(CSSPaintSize) \
85
    macro(CSSStyleValue) \
93
    macro(CSSStyleValue) \
- a/Source/WebCore/css/typedom/CSSKeywordValue.h +2 lines
Lines 42-47 public: a/Source/WebCore/css/typedom/CSSKeywordValue.h_sec1
42
    
42
    
43
    const String& value() const { return m_value; }
43
    const String& value() const { return m_value; }
44
    ExceptionOr<void> setValue(const String&);
44
    ExceptionOr<void> setValue(const String&);
45
    
46
    CSSStyleValueType getType() const final { return CSSStyleValueType::CSSKeywordValue; }
45
private:
47
private:
46
    explicit CSSKeywordValue(const String& value)
48
    explicit CSSKeywordValue(const String& value)
47
        : m_value(value) { }
49
        : m_value(value) { }
- a/Source/WebCore/css/typedom/CSSNumericValue.cpp +102 lines
Lines 30-35 a/Source/WebCore/css/typedom/CSSNumericValue.cpp_sec1
30
#include "config.h"
30
#include "config.h"
31
#include "CSSNumericValue.h"
31
#include "CSSNumericValue.h"
32
32
33
#include "CSSMathSum.h"
34
#include "CSSNumericFactory.h"
35
#include "CSSNumericType.h"
36
#include "CSSUnitValue.h"
37
#include "ExceptionOr.h"
38
33
#if ENABLE(CSS_TYPED_OM)
39
#if ENABLE(CSS_TYPED_OM)
34
40
35
#include <wtf/IsoMallocInlines.h>
41
#include <wtf/IsoMallocInlines.h>
Lines 38-43 namespace WebCore { a/Source/WebCore/css/typedom/CSSNumericValue.cpp_sec2
38
44
39
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSNumericValue);
45
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSNumericValue);
40
46
47
Ref<CSSNumericValue> CSSNumericValue::add(Vector<CSSNumberish>&& values)
48
{
49
    for (auto&& value : values) {
50
        auto numericValue = CSSNumericValue::rectifyNumberish(WTFMove(value));
51
        
52
    }
53
    return makeRef(*this);
54
}
55
56
Ref<CSSNumericValue> CSSNumericValue::sub(Vector<CSSNumberish>&& values)
57
{
58
    UNUSED_PARAM(values);
59
60
    return makeRef(*this);
61
}
62
63
Ref<CSSNumericValue> CSSNumericValue::mul(Vector<CSSNumberish>&& values)
64
{
65
    UNUSED_PARAM(values);
66
    return makeRef(*this);
67
68
}
69
70
Ref<CSSNumericValue> CSSNumericValue::div(Vector<CSSNumberish>&& values)
71
{
72
    UNUSED_PARAM(values);
73
74
    return makeRef(*this);
75
}
76
Ref<CSSNumericValue> CSSNumericValue::min(Vector<CSSNumberish>&& values)
77
{
78
    UNUSED_PARAM(values);
79
80
    return makeRef(*this);
81
}
82
Ref<CSSNumericValue> CSSNumericValue::max(Vector<CSSNumberish>&& values)
83
{
84
    UNUSED_PARAM(values);
85
86
    return makeRef(*this);
87
}
88
89
Ref<CSSNumericValue> CSSNumericValue::rectifyNumberish(CSSNumberish&& numberish)
90
{
91
//    if (WTF::holds_alternative<RefPtr<CSSNumericValue>>(numberish))
92
//        return WTF::get<RefPtr<CSSNumericValue>>(numberish).releaseNonNull();
93
//    else
94
//        return CSSNumericFactory::number(WTF::get<double>(numberish));
95
96
    return WTF::switchOn(numberish, [](RefPtr<CSSNumericValue>& value) {
97
        RELEASE_ASSERT(!!value);
98
        return Ref<CSSNumericValue> { *value };
99
    }, [](double value) {
100
        return Ref<CSSNumericValue> { CSSNumericFactory::number(value) };
101
    });
102
}
103
104
bool CSSNumericValue::equals(Vector<CSSNumberish>&& value)
105
{
106
    UNUSED_PARAM(value);
107
    // https://drafts.css-houdini.org/css-typed-om/#dom-cssnumericvalue-equals
108
    // FIXME: add impl.
109
    return false;
110
}
111
112
Ref<CSSUnitValue> CSSNumericValue::to(String&& unit)
113
{
114
    UNUSED_PARAM(unit);
115
    // https://drafts.css-houdini.org/css-typed-om/#dom-cssnumericvalue-to
116
    // FIXME: add impl.
117
    return CSSUnitValue::create(1.0, "number");
118
}
119
120
Ref<CSSMathSum> CSSNumericValue::toSum(Vector<String>&& units)
121
{
122
    UNUSED_PARAM(units);
123
    // https://drafts.css-houdini.org/css-typed-om/#dom-cssnumericvalue-tosum
124
    // FIXME: add impl.
125
    return CSSMathSum::create({ 1.0 });
126
}
127
128
CSSNumericType CSSNumericValue::type()
129
{
130
    // https://drafts.css-houdini.org/css-typed-om/#dom-cssnumericvalue-type
131
    // FIXME: add impl.
132
    return CSSNumericType { };
133
}
134
135
ExceptionOr<Ref<CSSNumericValue>> CSSNumericValue::parse(String&& cssText)
136
{
137
    UNUSED_PARAM(cssText);
138
    // https://drafts.css-houdini.org/css-typed-om/#dom-cssnumericvalue-parse
139
    // FIXME: add impl.
140
    return Exception { TypeError, "Not implemented Error" };
141
}
142
41
} // namespace WebCore
143
} // namespace WebCore
42
144
43
#endif
145
#endif
- a/Source/WebCore/css/typedom/CSSNumericValue.h +33 lines
Lines 28-44 a/Source/WebCore/css/typedom/CSSNumericValue.h_sec1
28
#if ENABLE(CSS_TYPED_OM)
28
#if ENABLE(CSS_TYPED_OM)
29
29
30
#include "CSSStyleValue.h"
30
#include "CSSStyleValue.h"
31
#include <wtf/Variant.h>
31
32
32
namespace WebCore {
33
namespace WebCore {
33
34
35
class CSSNumericValue;
36
class CSSUnitValue;
37
class CSSMathSum;
38
struct CSSNumericType;
39
40
template<typename> class ExceptionOr;
41
34
class CSSNumericValue : public CSSStyleValue {
42
class CSSNumericValue : public CSSStyleValue {
35
    WTF_MAKE_ISO_ALLOCATED(CSSNumericValue);
43
    WTF_MAKE_ISO_ALLOCATED(CSSNumericValue);
44
public:
45
    using CSSNumberish = Variant<double, RefPtr<CSSNumericValue>>;
46
47
    Ref<CSSNumericValue> add(Vector<CSSNumberish>&& values);
48
    Ref<CSSNumericValue> sub(Vector<CSSNumberish>&& values);
49
    Ref<CSSNumericValue> mul(Vector<CSSNumberish>&& values);
50
    Ref<CSSNumericValue> div(Vector<CSSNumberish>&& values);
51
    Ref<CSSNumericValue> min(Vector<CSSNumberish>&& values);
52
    Ref<CSSNumericValue> max(Vector<CSSNumberish>&& values);
53
    
54
    bool equals(Vector<CSSNumberish>&& value);
55
    
56
    Ref<CSSUnitValue> to(String&& unit);
57
    Ref<CSSMathSum> toSum(Vector<String>&& units);
58
    CSSNumericType type();
59
    
60
    static ExceptionOr<Ref<CSSNumericValue>> parse(String&& cssText);
61
    static Ref<CSSNumericValue> rectifyNumberish(CSSNumberish&&);
36
    
62
    
37
    CSSStyleValueType getType() const override { return CSSStyleValueType::CSSNumericValue; }
63
    CSSStyleValueType getType() const override { return CSSStyleValueType::CSSNumericValue; }
38
64
39
protected:
65
protected:
40
    CSSNumericValue() = default;
66
    CSSNumericValue() = default;
41
};
67
};
68
69
using CSSNumberish = CSSNumericValue::CSSNumberish;
70
42
} // namespace WebCore
71
} // namespace WebCore
43
72
73
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::CSSNumericValue)
74
    static bool isType(const WebCore::CSSStyleValue& styleValue) { return styleValue.getType() == WebCore::CSSStyleValueType::CSSNumericValue; }
75
SPECIALIZE_TYPE_TRAITS_END()
76
44
#endif
77
#endif
- a/Source/WebCore/css/typedom/CSSNumericValue.idl -1 / +18 lines
Lines 23-32 a/Source/WebCore/css/typedom/CSSNumericValue.idl_sec1
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
24
*/
25
25
26
typedef (double or CSSNumericValue) CSSNumberish;
27
26
[
28
[
27
    InterfaceName=CSSNumericValue,
29
    InterfaceName=CSSNumericValue,
28
    EnabledAtRuntime=CSSTypedOM,
30
    EnabledAtRuntime=CSSTypedOM,
29
    Conditional=CSS_TYPED_OM,
31
    Conditional=CSS_TYPED_OM,
30
    Exposed=(Window,Worker,PaintWorklet),
32
    JSGenerateToNativeObject,
33
    Exposed=(Window,Worker,PaintWorklet)
31
] interface CSSNumericValue : CSSStyleValue {
34
] interface CSSNumericValue : CSSStyleValue {
35
    CSSNumericValue add(CSSNumberish... values);
36
    CSSNumericValue sub(CSSNumberish... values);
37
    CSSNumericValue mul(CSSNumberish... values);
38
    CSSNumericValue div(CSSNumberish... values);
39
    CSSNumericValue min(CSSNumberish... values);
40
    CSSNumericValue max(CSSNumberish... values);
41
42
    boolean equals(CSSNumberish... value);
43
44
    CSSUnitValue to(USVString unit);
45
    CSSMathSum toSum(USVString... units);
46
    CSSNumericType type();
47
48
    [Exposed=Window] static CSSNumericValue parse(USVString cssText);
32
};
49
};
- a/Source/WebCore/css/typedom/numeric/CSSMathInvert.cpp +52 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathInvert.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSMathInvert.h"
28
29
#include "CSSNumericValue.h"
30
31
#if ENABLE(CSS_TYPED_OM)
32
33
#include <wtf/IsoMallocInlines.h>
34
35
namespace WebCore {
36
37
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSMathInvert);
38
39
Ref<CSSMathInvert> CSSMathInvert::create(CSSNumberish&& numberish)
40
{
41
    return adoptRef(*new CSSMathInvert(WTFMove(numberish)));
42
}
43
44
CSSMathInvert::CSSMathInvert(CSSNumberish&& numberish)
45
    : CSSMathValue(CSSMathOperator::Invert)
46
    , m_value(CSSNumericValue::rectifyNumberish(WTFMove(numberish)))
47
{
48
}
49
50
} // namespace WebCore
51
52
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathInvert.h +53 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathInvert.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSMathValue.h"
31
32
namespace WebCore {
33
34
class CSSMathInvert : public CSSMathValue {
35
    WTF_MAKE_ISO_ALLOCATED(CSSMathInvert);
36
public:
37
    static Ref<CSSMathInvert> create(CSSNumberish&&);
38
    const CSSNumericValue& value() { return m_value.get(); }
39
    
40
private:
41
    CSSMathInvert(CSSNumberish&&);
42
    Ref<CSSNumericValue> m_value;
43
};
44
45
} // namespace WebCore
46
47
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::CSSMathInvert)
48
    static bool isType(const WebCore::CSSStyleValue& styleValue) { return is<WebCore::CSSNumericValue>(styleValue) && isType(downcast<WebCore::CSSNumericValue>(styleValue)); }
49
    static bool isType(const WebCore::CSSNumericValue& numericValue) { return is<WebCore::CSSMathValue>(numericValue) && isType(downcast<WebCore::CSSMathValue>(numericValue)); }
50
    static bool isType(const WebCore::CSSMathValue& mathValue) { return mathValue.getOperator() == WebCore::CSSMathOperator::Invert; }
51
SPECIALIZE_TYPE_TRAITS_END()
52
53
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathInvert.idl +38 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathInvert.idl_sec1
1
/*
2
* Copyright (C) 2018 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
typedef (double or CSSNumericValue) CSSNumberish;
27
28
[
29
    EnabledAtRuntime=CSSTypedOM,
30
    Conditional=CSS_TYPED_OM,
31
    Exposed=(Window,Worker,PaintWorklet)
32
] interface CSSMathInvert : CSSMathValue {
33
    constructor(CSSNumberish arg);
34
35
    readonly attribute CSSNumericValue value;
36
};
37
38
- a/Source/WebCore/css/typedom/numeric/CSSMathMax.cpp +57 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathMax.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSMathMax.h"
28
29
#include "CSSNumericArray.h"
30
31
#if ENABLE(CSS_TYPED_OM)
32
33
#include <wtf/IsoMallocInlines.h>
34
35
namespace WebCore {
36
37
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSMathMax);
38
39
Ref<CSSMathMax> CSSMathMax::create(Vector<CSSNumberish>&& numberishes)
40
{
41
    return adoptRef(*new CSSMathMax(WTFMove(numberishes)));
42
}
43
44
CSSMathMax::CSSMathMax(Vector<CSSNumberish>&& numberishes)
45
    : CSSMathValue(CSSMathOperator::Max)
46
    , m_values(CSSNumericArray::create(WTFMove(numberishes)))
47
{
48
}
49
50
const CSSNumericArray& CSSMathMax::values()
51
{
52
    return m_values.get();
53
}
54
55
} // namespace WebCore
56
57
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathMax.h +56 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathMax.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSMathValue.h"
31
#include "CSSNumericValue.h"
32
33
namespace WebCore {
34
35
class CSSNumericArray;
36
37
class CSSMathMax : public CSSMathValue {
38
    WTF_MAKE_ISO_ALLOCATED(CSSMathMax);
39
public:
40
    static Ref<CSSMathMax> create(Vector<CSSNumberish>&&);
41
    const CSSNumericArray& values();
42
    
43
private:
44
    CSSMathMax(Vector<CSSNumberish>&&);
45
    Ref<CSSNumericArray> m_values;
46
};
47
48
} // namespace WebCore
49
50
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::CSSMathMax)
51
    static bool isType(const WebCore::CSSStyleValue& styleValue) { return is<WebCore::CSSNumericValue>(styleValue) && isType(downcast<WebCore::CSSNumericValue>(styleValue)); }
52
    static bool isType(const WebCore::CSSNumericValue& numericValue) { return is<WebCore::CSSMathValue>(numericValue) && isType(downcast<WebCore::CSSMathValue>(numericValue)); }
53
static bool isType(const WebCore::CSSMathValue& mathValue) { return mathValue.getOperator() == WebCore::CSSMathOperator::Max; }
54
SPECIALIZE_TYPE_TRAITS_END()
55
56
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathMax.idl +35 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathMax.idl_sec1
1
/*
2
* Copyright (C) 2018 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
typedef (double or CSSNumericValue) CSSNumberish;
27
28
[
29
    EnabledAtRuntime=CSSTypedOM,
30
    Conditional=CSS_TYPED_OM,
31
    Exposed=(Window,Worker,PaintWorklet)
32
] interface CSSMathMax : CSSMathValue {
33
    constructor(CSSNumberish... args);
34
    readonly attribute CSSNumericArray values;
35
};
- a/Source/WebCore/css/typedom/numeric/CSSMathMin.cpp +57 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathMin.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSMathMin.h"
28
29
#include "CSSNumericArray.h"
30
31
#if ENABLE(CSS_TYPED_OM)
32
33
#include <wtf/IsoMallocInlines.h>
34
35
namespace WebCore {
36
37
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSMathMin);
38
39
Ref<CSSMathMin> CSSMathMin::create(Vector<CSSNumberish>&& numberishes)
40
{
41
    return adoptRef(*new CSSMathMin(WTFMove(numberishes)));
42
}
43
44
CSSMathMin::CSSMathMin(Vector<CSSNumberish>&& numberishes)
45
    : CSSMathValue(CSSMathOperator::Min)
46
    , m_values(CSSNumericArray::create(WTFMove(numberishes)))
47
{
48
}
49
50
const CSSNumericArray& CSSMathMin::values()
51
{
52
    return m_values.get();
53
}
54
55
} // namespace WebCore
56
57
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathMin.h +56 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathMin.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSMathValue.h"
31
#include "CSSNumericValue.h"
32
33
namespace WebCore {
34
35
class CSSNumericArray;
36
37
class CSSMathMin : public CSSMathValue {
38
    WTF_MAKE_ISO_ALLOCATED(CSSMathMin);
39
public:
40
    static Ref<CSSMathMin> create(Vector<CSSNumberish>&&);
41
    const CSSNumericArray& values();
42
    
43
private:
44
    CSSMathMin(Vector<CSSNumberish>&&);
45
    Ref<CSSNumericArray> m_values;
46
};
47
48
} // namespace WebCore
49
50
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::CSSMathMin)
51
    static bool isType(const WebCore::CSSStyleValue& styleValue) { return is<WebCore::CSSNumericValue>(styleValue) && isType(downcast<WebCore::CSSNumericValue>(styleValue)); }
52
    static bool isType(const WebCore::CSSNumericValue& numericValue) { return is<WebCore::CSSMathValue>(numericValue) && isType(downcast<WebCore::CSSMathValue>(numericValue)); }
53
    static bool isType(const WebCore::CSSMathValue& mathValue) { return mathValue.getOperator() == WebCore::CSSMathOperator::Min; }
54
SPECIALIZE_TYPE_TRAITS_END()
55
56
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathMin.idl +36 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathMin.idl_sec1
1
/*
2
* Copyright (C) 2018 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
typedef (double or CSSNumericValue) CSSNumberish;
27
28
[
29
    EnabledAtRuntime=CSSTypedOM,
30
    Conditional=CSS_TYPED_OM,
31
    Exposed=(Window,Worker,PaintWorklet)
32
] interface CSSMathMin : CSSMathValue {
33
    constructor(CSSNumberish... args);
34
35
    readonly attribute CSSNumericArray values;
36
};
- a/Source/WebCore/css/typedom/numeric/CSSMathNegate.cpp +52 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathNegate.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSMathNegate.h"
28
29
#include "CSSNumericValue.h"
30
31
#if ENABLE(CSS_TYPED_OM)
32
33
#include <wtf/IsoMallocInlines.h>
34
35
namespace WebCore {
36
37
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSMathNegate);
38
39
Ref<CSSMathNegate> CSSMathNegate::create(CSSNumberish&& numberish)
40
{
41
    return adoptRef(*new CSSMathNegate(WTFMove(numberish)));
42
}
43
44
CSSMathNegate::CSSMathNegate(CSSNumberish&& numberish)
45
    : CSSMathValue(CSSMathOperator::Negate)
46
    , m_value(CSSNumericValue::rectifyNumberish(WTFMove(numberish)))
47
{
48
}
49
50
} // namespace WebCore
51
52
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathNegate.h +56 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathNegate.h_sec1
1
/*
2
 * Copyright (C) 2018 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSMathValue.h"
31
#include "CSSNumericValue.h"
32
33
namespace WebCore {
34
35
class CSSNumericValue;
36
37
class CSSMathNegate : public CSSMathValue {
38
    WTF_MAKE_ISO_ALLOCATED(CSSMathNegate);
39
public:
40
    static Ref<CSSMathNegate> create(CSSNumberish&&);
41
    const CSSNumericValue& value() { return m_value.get(); }
42
    
43
private:
44
    CSSMathNegate(CSSNumberish&&);
45
    Ref<CSSNumericValue> m_value;
46
};
47
48
} // namespace WebCore
49
50
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::CSSMathNegate)
51
    static bool isType(const WebCore::CSSStyleValue& styleValue) { return is<WebCore::CSSNumericValue>(styleValue) && isType(downcast<WebCore::CSSNumericValue>(styleValue)); }
52
    static bool isType(const WebCore::CSSNumericValue& numericValue) { return is<WebCore::CSSMathValue>(numericValue) && isType(downcast<WebCore::CSSMathValue>(numericValue)); }
53
    static bool isType(const WebCore::CSSMathValue& mathValue) { return mathValue.getOperator() == WebCore::CSSMathOperator::Negate; }
54
SPECIALIZE_TYPE_TRAITS_END()
55
56
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathNegate.idl +38 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathNegate.idl_sec1
1
/*
2
* Copyright (C) 2018 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
typedef (double or CSSNumericValue) CSSNumberish;
27
28
[
29
    EnabledAtRuntime=CSSTypedOM,
30
    Conditional=CSS_TYPED_OM,
31
    Exposed=(Window,Worker,PaintWorklet)
32
] interface CSSMathNegate : CSSMathValue {
33
    constructor(CSSNumberish arg);
34
35
    readonly attribute CSSNumericValue value;
36
};
37
38
- a/Source/WebCore/css/typedom/numeric/CSSMathOperator.cpp +37 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathOperator.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSMathOperator.h"
28
29
#if ENABLE(CSS_TYPED_OM)
30
31
#include <wtf/IsoMallocInlines.h>
32
33
namespace WebCore {
34
35
} // namespace WebCore
36
37
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathOperator.h +43 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathOperator.h_sec1
1
/*
2
 * Copyright (C) 2018 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
namespace WebCore {
31
32
enum class CSSMathOperator: uint8_t {
33
    Sum,
34
    Product,
35
    Negate,
36
    Invert,
37
    Min,
38
    Max
39
};
40
41
} // namespace WebCore
42
43
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathOperator.idl +35 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathOperator.idl_sec1
1
/*
2
* Copyright (C) 2018 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
[
27
    Conditional=CSS_TYPED_OM
28
] enum CSSMathOperator {
29
    "sum",
30
    "product",
31
    "negate",
32
    "invert",
33
    "min",
34
    "max"
35
};
- a/Source/WebCore/css/typedom/numeric/CSSMathProduct.cpp +57 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathProduct.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSMathProduct.h"
28
29
#include "CSSNumericArray.h"
30
31
#if ENABLE(CSS_TYPED_OM)
32
33
#include <wtf/IsoMallocInlines.h>
34
35
namespace WebCore {
36
37
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSMathProduct);
38
39
Ref<CSSMathProduct> CSSMathProduct::create(Vector<CSSNumberish>&& numberishes)
40
{
41
    return adoptRef(*new CSSMathProduct(WTFMove(numberishes)));
42
}
43
44
CSSMathProduct::CSSMathProduct(Vector<CSSNumberish>&& numberishes)
45
    : CSSMathValue(CSSMathOperator::Product)
46
    , m_values(CSSNumericArray::create(WTFMove(numberishes)))
47
{
48
}
49
50
const CSSNumericArray& CSSMathProduct::values()
51
{
52
    return m_values.get();
53
}
54
55
} // namespace WebCore
56
57
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathProduct.h +59 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathProduct.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSMathValue.h"
31
#include "CSSNumericValue.h"
32
33
namespace WebCore {
34
35
class CSSNumericArray;
36
37
class CSSMathProduct : public CSSMathValue {
38
    WTF_MAKE_ISO_ALLOCATED(CSSMathProduct);
39
public:
40
    static Ref<CSSMathProduct> create(Vector<CSSNumberish>&&);
41
    const CSSNumericArray& values();
42
    
43
    CSSMathOperator getOperator() const final { return CSSMathOperator::Product; }
44
45
private:
46
    CSSMathProduct(Vector<CSSNumberish>&&);
47
    Ref<CSSNumericArray> m_values;
48
};
49
50
} // namespace WebCore
51
52
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::CSSMathProduct)
53
    static bool isType(const WebCore::CSSStyleValue& styleValue) { return is<WebCore::CSSNumericValue>(styleValue) && isType(downcast<WebCore::CSSNumericValue>(styleValue)); }
54
    static bool isType(const WebCore::CSSNumericValue& numericValue) { return is<WebCore::CSSMathValue>(numericValue) && isType(downcast<WebCore::CSSMathValue>(numericValue)); }
55
    static bool isType(const WebCore::CSSMathValue& mathValue) { return mathValue.getOperator() == WebCore::CSSMathOperator::Product; }
56
SPECIALIZE_TYPE_TRAITS_END()
57
58
59
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathProduct.idl +35 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathProduct.idl_sec1
1
/*
2
* Copyright (C) 2021 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
typedef (double or CSSNumericValue) CSSNumberish;
27
28
[
29
    EnabledAtRuntime=CSSTypedOM,
30
    Conditional=CSS_TYPED_OM,
31
    Exposed=(Window,Worker,PaintWorklet)
32
] interface CSSMathProduct : CSSMathValue {
33
    constructor(CSSNumberish... args);
34
    readonly attribute CSSNumericArray values;
35
};
- a/Source/WebCore/css/typedom/numeric/CSSMathSum.cpp +57 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathSum.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSMathSum.h"
28
29
#include "CSSNumericArray.h"
30
31
#if ENABLE(CSS_TYPED_OM)
32
33
#include <wtf/IsoMallocInlines.h>
34
35
namespace WebCore {
36
37
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSMathSum);
38
39
Ref<CSSMathSum> CSSMathSum::create(Vector<CSSNumberish>&& numberishes)
40
{
41
    return adoptRef(*new CSSMathSum(WTFMove(numberishes)));
42
}
43
44
CSSMathSum::CSSMathSum(Vector<CSSNumberish>&& numberishes)
45
    : CSSMathValue(CSSMathOperator::Sum)
46
    , m_values(CSSNumericArray::create(WTFMove(numberishes)))
47
{
48
}
49
50
const CSSNumericArray& CSSMathSum::values()
51
{
52
    return m_values.get();
53
}
54
55
} // namespace WebCore
56
57
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathSum.h +57 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathSum.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSMathOperator.h"
31
#include "CSSMathValue.h"
32
#include "CSSNumericValue.h"
33
34
namespace WebCore {
35
36
class CSSNumericArray;
37
38
class CSSMathSum : public CSSMathValue {
39
    WTF_MAKE_ISO_ALLOCATED(CSSMathSum);
40
public:
41
    static Ref<CSSMathSum> create(Vector<CSSNumberish>&&);
42
    const CSSNumericArray& values();
43
44
private:
45
    CSSMathSum(Vector<CSSNumberish>&&);
46
    Ref<CSSNumericArray> m_values;
47
};
48
49
} // namespace WebCore
50
51
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::CSSMathSum)
52
    static bool isType(const WebCore::CSSStyleValue& styleValue) { return is<WebCore::CSSNumericValue>(styleValue) && isType(downcast<WebCore::CSSNumericValue>(styleValue)); }
53
    static bool isType(const WebCore::CSSNumericValue& numericValue) { return is<WebCore::CSSMathValue>(numericValue) && isType(downcast<WebCore::CSSMathValue>(numericValue)); }
54
    static bool isType(const WebCore::CSSMathValue& mathValue) { return mathValue.getOperator() == WebCore::CSSMathOperator::Sum; }
55
SPECIALIZE_TYPE_TRAITS_END()
56
57
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathSum.idl +35 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathSum.idl_sec1
1
/*
2
* Copyright (C) 2021 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
typedef (double or CSSNumericValue) CSSNumberish;
27
28
[
29
    EnabledAtRuntime=CSSTypedOM,
30
    Conditional=CSS_TYPED_OM,
31
    Exposed=(Window,Worker,PaintWorklet)
32
] interface CSSMathSum : CSSMathValue {
33
    constructor(CSSNumberish... args);
34
    readonly attribute CSSNumericArray values;
35
};
- a/Source/WebCore/css/typedom/numeric/CSSMathValue.cpp +44 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathValue.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSMathValue.h"
28
29
#if ENABLE(CSS_TYPED_OM)
30
31
#include <wtf/IsoMallocInlines.h>
32
33
namespace WebCore {
34
35
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSMathValue);
36
37
CSSMathValue::CSSMathValue(CSSMathOperator mathOperator)
38
    : m_operator(mathOperator)
39
{
40
}
41
42
} // namespace WebCore
43
44
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathValue.h +66 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathValue.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSMathOperator.h"
31
#include "CSSNumericValue.h"
32
#include "CSSStyleValue.h"
33
34
namespace WebCore {
35
36
enum class CSSMathValueType: uint8_t {
37
    CSSMathInvert,
38
    CSSMathMax,
39
    CSSMathMin,
40
    CSSMathNegate,
41
    CSSMathOperator,
42
    CSSMathProduct,
43
    CSSMathSum,
44
    CSSMathValue
45
};
46
47
class CSSMathValue : public CSSNumericValue {
48
    WTF_MAKE_ISO_ALLOCATED(CSSMathValue);
49
public:
50
    virtual CSSMathOperator getOperator() const { return m_operator; }
51
    
52
    CSSStyleValueType getType() const final { return CSSStyleValueType::CSSMathValue; }
53
    
54
protected:
55
    CSSMathValue(CSSMathOperator);
56
    CSSMathOperator m_operator;
57
};
58
59
} // namespace WebCore
60
61
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::CSSMathValue)
62
    static bool isType(const WebCore::CSSStyleValue& styleValue) { return styleValue.getType() == WebCore::CSSStyleValueType::CSSMathValue; }
63
    static bool isType(const WebCore::CSSNumericValue& numericValue) { return numericValue.getType() == WebCore::CSSStyleValueType::CSSMathValue; }
64
SPECIALIZE_TYPE_TRAITS_END()
65
66
#endif
- a/Source/WebCore/css/typedom/numeric/CSSMathValue.idl +34 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSMathValue.idl_sec1
1
/*
2
* Copyright (C) 2021 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
typedef (double or CSSNumericValue) CSSNumberish;
27
28
[
29
    EnabledAtRuntime=CSSTypedOM,
30
    Conditional=CSS_TYPED_OM,
31
    Exposed=(Window,Worker,PaintWorklet)
32
] interface CSSMathValue : CSSNumericValue {
33
    [ImplementedAs=getOperator] readonly attribute CSSMathOperator operator;
34
};
- a/Source/WebCore/css/typedom/numeric/CSSNumericArray.cpp +58 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericArray.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#include "config.h"
27
#include "CSSNumericArray.h"
28
29
#if ENABLE(CSS_TYPED_OM)
30
31
#include <wtf/IsoMallocInlines.h>
32
33
namespace WebCore {
34
35
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSNumericArray);
36
37
Ref<CSSNumericArray> CSSNumericArray::create(Vector<CSSNumberish>&& numberishes)
38
{
39
    Vector<Ref<CSSNumericValue>> values;
40
    for (auto&& numberish : numberishes)
41
        values.append(CSSNumericValue::rectifyNumberish(WTFMove(numberish)));
42
    
43
    return adoptRef(*new CSSNumericArray(WTFMove(values)));
44
}
45
46
Ref<CSSNumericArray> CSSNumericArray::create(Vector<Ref<CSSNumericValue>>&& values)
47
{
48
    return adoptRef(*new CSSNumericArray(WTFMove(values)));
49
}
50
51
CSSNumericArray::CSSNumericArray(Vector<Ref<CSSNumericValue>>&& values)
52
    : m_array(WTFMove(values))
53
{
54
}
55
56
} // namespace WebCore
57
58
#endif
- a/Source/WebCore/css/typedom/numeric/CSSNumericArray.h +53 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericArray.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSNumericBaseType.h"
31
#include "CSSNumericType.h"
32
#include "CSSNumericValue.h"
33
34
#include <wtf/RefCounted.h>
35
36
namespace WebCore {
37
38
class CSSNumericArray : public RefCounted<CSSNumericArray> {
39
    WTF_MAKE_ISO_ALLOCATED(CSSNumericArray);
40
public:
41
    static Ref<CSSNumericArray> create(Vector<CSSNumberish>&&);
42
    static Ref<CSSNumericArray> create(Vector<Ref<CSSNumericValue>>&&);
43
    size_t length() const { return m_array.size(); };
44
    Ref<CSSNumericValue> item(size_t index) { return m_array[index].copyRef(); }
45
46
private:
47
    Vector<Ref<CSSNumericValue>> m_array;
48
    CSSNumericArray(Vector<Ref<CSSNumericValue>>&&);
49
};
50
51
} // namespace WebCore
52
53
#endif
- a/Source/WebCore/css/typedom/numeric/CSSNumericArray.idl +35 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericArray.idl_sec1
1
/*
2
* Copyright (C) 2021 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
[
27
    EnabledAtRuntime=CSSTypedOM,
28
    Conditional=CSS_TYPED_OM,
29
    ImplementationLacksVTable,
30
    Exposed=(Window,Worker,PaintWorklet)
31
] interface CSSNumericArray {
32
    iterable<CSSNumericValue>;
33
    readonly attribute unsigned long length;
34
    getter CSSNumericValue (unsigned long index);
35
};
- a/Source/WebCore/css/typedom/numeric/CSSNumericBaseType.cpp +33 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericBaseType.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
namespace WebCore {
31
} // namespace WebCore
32
33
#endif
- a/Source/WebCore/css/typedom/numeric/CSSNumericBaseType.h +44 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericBaseType.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
namespace WebCore {
31
32
enum class CSSNumericBaseType {
33
    Length,
34
    Angle,
35
    Time,
36
    Frequency,
37
    Resolution,
38
    Flex,
39
    Percent,
40
};
41
42
} // namespace WebCore
43
44
#endif
- a/Source/WebCore/css/typedom/numeric/CSSNumericBaseType.idl +37 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericBaseType.idl_sec1
1
/*
2
* Copyright (C) 2021 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
[
27
    EnabledAtRuntime=CSSTypedOM,
28
    Conditional=CSS_TYPED_OM,
29
] enum CSSNumericBaseType {
30
    "length",
31
    "angle",
32
    "time",
33
    "frequency",
34
    "resolution",
35
    "flex",
36
    "percent"
37
};
- a/Source/WebCore/css/typedom/numeric/CSSNumericType.cpp +36 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericType.cpp_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "config.h"
31
#include "CSSNumericType.h"
32
33
namespace WebCore {
34
} // namespace WebCore
35
36
#endif
- a/Source/WebCore/css/typedom/numeric/CSSNumericType.h +47 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericType.h_sec1
1
/*
2
 * Copyright (C) 2021 Apple Inc. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 * 1. Redistributions of source code must retain the above copyright
8
 *    notice, this list of conditions and the following disclaimer.
9
 * 2. Redistributions in binary form must reproduce the above copyright
10
 *    notice, this list of conditions and the following disclaimer in the
11
 *    documentation and/or other materials provided with the distribution.
12
 *
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 */
25
26
#pragma once
27
28
#if ENABLE(CSS_TYPED_OM)
29
30
#include "CSSNumericBaseType.h"
31
32
namespace WebCore {
33
34
struct CSSNumericType {
35
    long length;
36
    long angle;
37
    long time;
38
    long frequency;
39
    long resolution;
40
    long flex;
41
    long percent;
42
    CSSNumericBaseType percentHint;
43
};
44
45
} // namespace WebCore
46
47
#endif
- a/Source/WebCore/css/typedom/numeric/CSSNumericType.idl +38 lines
Line 0 a/Source/WebCore/css/typedom/numeric/CSSNumericType.idl_sec1
1
/*
2
* Copyright (C) 2021 Apple Inc.  All rights reserved.
3
*
4
* Redistribution and use in source and binary forms, with or without
5
* modification, are permitted provided that the following conditions
6
* are met:
7
* 1. Redistributions of source code must retain the above copyright
8
*    notice, this list of conditions and the following disclaimer.
9
* 2. Redistributions in binary form must reproduce the above copyright
10
*    notice, this list of conditions and the following disclaimer in the
11
*    documentation and/or other materials provided with the distribution.
12
*
13
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
*/
25
26
[
27
    Conditional=CSS_TYPED_OM,
28
    JSGenerateToJSObject,
29
] dictionary CSSNumericType {
30
    long length;
31
    long angle;
32
    long time;
33
    long frequency;
34
    long resolution;
35
    long flex;
36
    long percent;
37
    CSSNumericBaseType percentHint;
38
};
- a/LayoutTests/imported/w3c/ChangeLog +272 lines
Lines 1-3 a/LayoutTests/imported/w3c/ChangeLog_sec1
1
2021-09-09  Johnson Zhou  <qiaosong_zhou@apple.com>
2
3
        Addition of CSSNumericValue and subclasses. (CSS Typed OM)
4
        https://bugs.webkit.org/show_bug.cgi?id=230031
5
6
        Reviewed by NOBODY (OOPS!).
7
8
        * web-platform-tests/css/css-typed-om/idlharness-expected.txt:
9
        * web-platform-tests/css/css-typed-om/rotate-by-added-angle-expected.txt:
10
        * web-platform-tests/css/css-typed-om/stylevalue-normalization/normalize-numeric.tentative-expected.txt:
11
        * web-platform-tests/css/css-typed-om/stylevalue-normalization/positionvalue-normalization.tentative-expected.txt:
12
        * web-platform-tests/css/css-typed-om/stylevalue-serialization/crashtests/cssTransform-Internal-value-expected.txt:
13
        * web-platform-tests/css/css-typed-om/stylevalue-serialization/cssMathValue.tentative-expected.txt:
14
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPerspective.tentative-expected.txt:
15
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPositionValue-expected.txt:
16
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPositionValue-invalid-expected.txt:
17
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssRGB-expected.txt:
18
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssRotate.tentative-expected.txt:
19
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssScale.tentative-expected.txt:
20
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkew.tentative-expected.txt:
21
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkewX.tentative-expected.txt:
22
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkewY.tentative-expected.txt:
23
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssTranslate.tentative-expected.txt:
24
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/add-two-types.tentative-expected.txt:
25
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/arithmetic.tentative-expected.txt:
26
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/create-a-type.tentative-expected.txt:
27
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathInvert-type-expected.txt:
28
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathNegate-type-expected.txt:
29
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathValue.tentative-expected.txt:
30
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssnumericvalue-multiply-two-types.tentative-expected.txt:
31
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/equals.tentative-expected.txt:
32
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/parse.tentative-expected.txt:
33
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/to.tentative-expected.txt:
34
        * web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/toSum.tentative-expected.txt:
35
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/accent-color-expected.txt:
36
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/alignment-baseline-expected.txt:
37
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/all-expected.txt:
38
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-delay-expected.txt:
39
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-direction-expected.txt:
40
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-duration-expected.txt:
41
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-expected.txt:
42
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-fill-mode-expected.txt:
43
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-iteration-count-expected.txt:
44
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-name-expected.txt:
45
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-play-state-expected.txt:
46
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-timing-function-expected.txt:
47
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/backdrop-filter-expected.txt:
48
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/backface-visibility-expected.txt:
49
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-attachment-expected.txt:
50
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-blend-mode-expected.txt:
51
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-clip-expected.txt:
52
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-color-expected.txt:
53
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-expected.txt:
54
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-image-expected.txt:
55
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-origin-expected.txt:
56
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-position-expected.txt:
57
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-repeat-expected.txt:
58
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-size-expected.txt:
59
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/baseline-shift-expected.txt:
60
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/block-size-expected.txt:
61
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-collapse-expected.txt:
62
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-color-expected.txt:
63
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-outset-expected.txt:
64
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-repeat-expected.txt:
65
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-slice-expected.txt:
66
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-source-expected.txt:
67
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-width-expected.txt:
68
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-radius-expected.txt:
69
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-style-expected.txt:
70
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-width-expected.txt:
71
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/bottom-expected.txt:
72
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/box-shadow-expected.txt:
73
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/box-sizing-expected.txt:
74
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/break-expected.txt:
75
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/caption-side-expected.txt:
76
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/caret-color-expected.txt:
77
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/center-coordinate-expected.txt:
78
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clear-expected.txt:
79
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-expected.txt:
80
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-path-expected.txt:
81
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-rule-expected.txt:
82
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/color-expected.txt:
83
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/color-interpolation-expected.txt:
84
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-count-expected.txt:
85
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-color-expected.txt:
86
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-style-expected.txt:
87
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-width-expected.txt:
88
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-span-expected.txt:
89
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-width-expected.txt:
90
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/contain-expected.txt:
91
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/coordinate-expected.txt:
92
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-increment-expected.txt:
93
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-reset-expected.txt:
94
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-set-expected.txt:
95
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/cursor-expected.txt:
96
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/d-expected.txt:
97
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/direction-expected.txt:
98
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/display-expected.txt:
99
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/dominant-baseline-expected.txt:
100
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/empty-cells-expected.txt:
101
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-color-expected.txt:
102
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-expected.txt:
103
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-opacity-expected.txt:
104
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-rule-expected.txt:
105
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/filter-expected.txt:
106
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-basis-expected.txt:
107
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-direction-expected.txt:
108
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-expected.txt:
109
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-flow-expected.txt:
110
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-grow-expected.txt:
111
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-shrink-expected.txt:
112
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-wrap-expected.txt:
113
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/float-expected.txt:
114
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flood-color-expected.txt:
115
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flood-opacity-expected.txt:
116
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-expected.txt:
117
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-family-expected.txt:
118
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-feature-settings-expected.txt:
119
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-kerning-expected.txt:
120
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-language-override-expected.txt:
121
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-optical-sizing-expected.txt:
122
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-palette-expected.txt:
123
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-presentation-expected.txt:
124
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-size-adjust-expected.txt:
125
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-size-expected.txt:
126
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-stretch-expected.txt:
127
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-style-expected.txt:
128
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-synthesis-expected.txt:
129
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-alternates-expected.txt:
130
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-caps-expected.txt:
131
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-east-asian-expected.txt:
132
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-emoji-expected.txt:
133
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-expected.txt:
134
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-ligatures-expected.txt:
135
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-numeric-expected.txt:
136
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variation-settings-expected.txt:
137
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-weight-expected.txt:
138
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/gap-expected.txt:
139
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-area-expected.txt:
140
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-auto-columns-rows-expected.txt:
141
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-auto-flow-expected.txt:
142
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-expected.txt:
143
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-gap-expected.txt:
144
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-start-end-expected.txt:
145
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-areas-expected.txt:
146
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-columns-rows-expected.txt:
147
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-expected.txt:
148
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/height-expected.txt:
149
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/hyphens-expected.txt:
150
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/image-rendering-expected.txt:
151
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/inline-size-expected.txt:
152
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/isolation-expected.txt:
153
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/left-expected.txt:
154
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/letter-spacing-expected.txt:
155
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/lighting-color-expected.txt:
156
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-break-expected.txt:
157
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-height-expected.txt:
158
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-height-step-expected.txt:
159
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-image-expected.txt:
160
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-position-expected.txt:
161
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-type-expected.txt:
162
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/logical-expected.txt:
163
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/margin-expected.txt:
164
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/marker-expected.txt:
165
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-expected.txt:
166
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-image-expected.txt:
167
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-type-expected.txt:
168
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mix-blend-mode-expected.txt:
169
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/object-fit-expected.txt:
170
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/object-position-expected.txt:
171
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-anchor-expected.txt:
172
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-distance-expected.txt:
173
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-expected.txt:
174
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-path-expected.txt:
175
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-position-expected.txt:
176
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-rotate-expected.txt:
177
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/opacity-expected.txt:
178
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/order-expected.txt:
179
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/orphans-expected.txt:
180
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-color-expected.txt:
181
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-offset-expected.txt:
182
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-style-expected.txt:
183
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-width-expected.txt:
184
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-anchor-expected.txt:
185
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-expected.txt:
186
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-wrap-expected.txt:
187
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overscroll-behavior-expected.txt:
188
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/padding-expected.txt:
189
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/page-expected.txt:
190
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/paint-order-expected.txt:
191
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/perspective-expected.txt:
192
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/perspective-origin-expected.txt:
193
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/pointer-events-expected.txt:
194
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/position-expected.txt:
195
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/quotes-expected.txt:
196
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/radius-expected.txt:
197
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/resize-expected.txt:
198
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/right-expected.txt:
199
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-behavior-expected.txt:
200
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-margin-expected.txt:
201
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-padding-expected.txt:
202
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-align-expected.txt:
203
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-stop-expected.txt:
204
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-type-expected.txt:
205
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scrollbar-gutter-expected.txt:
206
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scrollbar-width-expected.txt:
207
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-image-threshold-expected.txt:
208
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-margin-expected.txt:
209
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-outside-expected.txt:
210
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-rendering-expected.txt:
211
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/speak-expected.txt:
212
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stop-color-expected.txt:
213
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stop-opacity-expected.txt:
214
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-dasharray-expected.txt:
215
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-dashoffset-expected.txt:
216
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-expected.txt:
217
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-linecap-expected.txt:
218
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-linejoin-expected.txt:
219
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-miterlimit-expected.txt:
220
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-opacity-expected.txt:
221
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-width-expected.txt:
222
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/tab-size-expected.txt:
223
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/table-layout-expected.txt:
224
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-align-expected.txt:
225
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-align-last-expected.txt:
226
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-anchor-expected.txt:
227
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-combine-upright-expected.txt:
228
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-color-expected.txt:
229
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-expected.txt:
230
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-line-expected.txt:
231
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-skip-expected.txt:
232
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-skip-ink-expected.txt:
233
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-style-expected.txt:
234
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-thickness-expected.txt:
235
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-emphasis-color-expected.txt:
236
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-indent-expected.txt:
237
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-justify-expected.txt:
238
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-orientation-expected.txt:
239
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-overflow-expected.txt:
240
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-rendering-expected.txt:
241
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-shadow-expected.txt:
242
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-size-adjust-expected.txt:
243
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-transform-expected.txt:
244
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-underline-offset-expected.txt:
245
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-underline-position-expected.txt:
246
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/top-expected.txt:
247
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/touch-action-expected.txt:
248
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-box-expected.txt:
249
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-expected.txt:
250
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-style-expected.txt:
251
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-delay-expected.txt:
252
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-duration-expected.txt:
253
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-expected.txt:
254
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-property-expected.txt:
255
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-timing-function-expected.txt:
256
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/unicode-bidi-expected.txt:
257
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/user-select-expected.txt:
258
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/vector-effect-expected.txt:
259
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/vertical-align-expected.txt:
260
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/visibility-expected.txt:
261
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/white-space-expected.txt:
262
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/widows-expected.txt:
263
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/width-expected.txt:
264
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/will-change-expected.txt:
265
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-break-expected.txt:
266
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-spacing-expected.txt:
267
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-wrap-expected.txt:
268
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/writing-mode-expected.txt:
269
        * web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/z-index-expected.txt:
270
        * web-platform-tests/css/css-typed-om/width-by-max-px-em-expected.txt:
271
        * web-platform-tests/css/css-typed-om/width-by-min-px-em-expected.txt:
272
1
2021-09-06  Commit Queue  <commit-queue@webkit.org>
273
2021-09-06  Commit Queue  <commit-queue@webkit.org>
2
274
3
        Unreviewed, reverting r282058.
275
        Unreviewed, reverting r282058.
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/idlharness-expected.txt -68 / +68 lines
Lines 102-118 PASS CSSNumericValue interface object name a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/idlharness-expected.txt_sec1
102
PASS CSSNumericValue interface: existence and properties of interface prototype object
102
PASS CSSNumericValue interface: existence and properties of interface prototype object
103
PASS CSSNumericValue interface: existence and properties of interface prototype object's "constructor" property
103
PASS CSSNumericValue interface: existence and properties of interface prototype object's "constructor" property
104
PASS CSSNumericValue interface: existence and properties of interface prototype object's @@unscopables property
104
PASS CSSNumericValue interface: existence and properties of interface prototype object's @@unscopables property
105
FAIL CSSNumericValue interface: operation add(CSSNumberish...) assert_own_property: interface prototype object missing non-static operation expected property "add" missing
105
PASS CSSNumericValue interface: operation add(CSSNumberish...)
106
FAIL CSSNumericValue interface: operation sub(CSSNumberish...) assert_own_property: interface prototype object missing non-static operation expected property "sub" missing
106
PASS CSSNumericValue interface: operation sub(CSSNumberish...)
107
FAIL CSSNumericValue interface: operation mul(CSSNumberish...) assert_own_property: interface prototype object missing non-static operation expected property "mul" missing
107
PASS CSSNumericValue interface: operation mul(CSSNumberish...)
108
FAIL CSSNumericValue interface: operation div(CSSNumberish...) assert_own_property: interface prototype object missing non-static operation expected property "div" missing
108
PASS CSSNumericValue interface: operation div(CSSNumberish...)
109
FAIL CSSNumericValue interface: operation min(CSSNumberish...) assert_own_property: interface prototype object missing non-static operation expected property "min" missing
109
PASS CSSNumericValue interface: operation min(CSSNumberish...)
110
FAIL CSSNumericValue interface: operation max(CSSNumberish...) assert_own_property: interface prototype object missing non-static operation expected property "max" missing
110
PASS CSSNumericValue interface: operation max(CSSNumberish...)
111
FAIL CSSNumericValue interface: operation equals(CSSNumberish...) assert_own_property: interface prototype object missing non-static operation expected property "equals" missing
111
PASS CSSNumericValue interface: operation equals(CSSNumberish...)
112
FAIL CSSNumericValue interface: operation to(USVString) assert_own_property: interface prototype object missing non-static operation expected property "to" missing
112
PASS CSSNumericValue interface: operation to(USVString)
113
FAIL CSSNumericValue interface: operation toSum(USVString...) assert_own_property: interface prototype object missing non-static operation expected property "toSum" missing
113
PASS CSSNumericValue interface: operation toSum(USVString...)
114
FAIL CSSNumericValue interface: operation type() assert_own_property: interface prototype object missing non-static operation expected property "type" missing
114
PASS CSSNumericValue interface: operation type()
115
FAIL CSSNumericValue interface: operation parse(USVString) assert_own_property: interface object missing static operation expected property "parse" missing
115
PASS CSSNumericValue interface: operation parse(USVString)
116
PASS CSSUnitValue interface: existence and properties of interface object
116
PASS CSSUnitValue interface: existence and properties of interface object
117
PASS CSSUnitValue interface object length
117
PASS CSSUnitValue interface object length
118
PASS CSSUnitValue interface object name
118
PASS CSSUnitValue interface object name
Lines 150-169 FAIL CSSStyleValue interface: unitValue must inherit property "parse(USVString, a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/idlharness-expected.txt_sec2
150
FAIL CSSStyleValue interface: calling parse(USVString, USVString) on unitValue with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: unitValue"
150
FAIL CSSStyleValue interface: calling parse(USVString, USVString) on unitValue with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: unitValue"
151
FAIL CSSStyleValue interface: unitValue must inherit property "parseAll(USVString, USVString)" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: unitValue"
151
FAIL CSSStyleValue interface: unitValue must inherit property "parseAll(USVString, USVString)" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: unitValue"
152
FAIL CSSStyleValue interface: calling parseAll(USVString, USVString) on unitValue with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: unitValue"
152
FAIL CSSStyleValue interface: calling parseAll(USVString, USVString) on unitValue with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: unitValue"
153
FAIL CSSMathValue interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathValue" expected property "CSSMathValue" missing
153
PASS CSSMathValue interface: existence and properties of interface object
154
FAIL CSSMathValue interface object length assert_own_property: self does not have own property "CSSMathValue" expected property "CSSMathValue" missing
154
PASS CSSMathValue interface object length
155
FAIL CSSMathValue interface object name assert_own_property: self does not have own property "CSSMathValue" expected property "CSSMathValue" missing
155
PASS CSSMathValue interface object name
156
FAIL CSSMathValue interface: existence and properties of interface prototype object assert_own_property: self does not have own property "CSSMathValue" expected property "CSSMathValue" missing
156
PASS CSSMathValue interface: existence and properties of interface prototype object
157
FAIL CSSMathValue interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "CSSMathValue" expected property "CSSMathValue" missing
157
PASS CSSMathValue interface: existence and properties of interface prototype object's "constructor" property
158
FAIL CSSMathValue interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "CSSMathValue" expected property "CSSMathValue" missing
158
PASS CSSMathValue interface: existence and properties of interface prototype object's @@unscopables property
159
FAIL CSSMathValue interface: attribute operator assert_own_property: self does not have own property "CSSMathValue" expected property "CSSMathValue" missing
159
PASS CSSMathValue interface: attribute operator
160
FAIL CSSMathSum interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathSum" expected property "CSSMathSum" missing
160
PASS CSSMathSum interface: existence and properties of interface object
161
FAIL CSSMathSum interface object length assert_own_property: self does not have own property "CSSMathSum" expected property "CSSMathSum" missing
161
PASS CSSMathSum interface object length
162
FAIL CSSMathSum interface object name assert_own_property: self does not have own property "CSSMathSum" expected property "CSSMathSum" missing
162
PASS CSSMathSum interface object name
163
FAIL CSSMathSum interface: existence and properties of interface prototype object assert_own_property: self does not have own property "CSSMathSum" expected property "CSSMathSum" missing
163
PASS CSSMathSum interface: existence and properties of interface prototype object
164
FAIL CSSMathSum interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "CSSMathSum" expected property "CSSMathSum" missing
164
PASS CSSMathSum interface: existence and properties of interface prototype object's "constructor" property
165
FAIL CSSMathSum interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "CSSMathSum" expected property "CSSMathSum" missing
165
PASS CSSMathSum interface: existence and properties of interface prototype object's @@unscopables property
166
FAIL CSSMathSum interface: attribute values assert_own_property: self does not have own property "CSSMathSum" expected property "CSSMathSum" missing
166
PASS CSSMathSum interface: attribute values
167
FAIL CSSMathSum must be primary interface of mathSum assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
167
FAIL CSSMathSum must be primary interface of mathSum assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
168
FAIL Stringification of mathSum assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
168
FAIL Stringification of mathSum assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
169
FAIL CSSMathSum interface: mathSum must inherit property "values" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
169
FAIL CSSMathSum interface: mathSum must inherit property "values" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
Lines 193-233 FAIL CSSStyleValue interface: mathSum must inherit property "parse(USVString, US a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/idlharness-expected.txt_sec3
193
FAIL CSSStyleValue interface: calling parse(USVString, USVString) on mathSum with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
193
FAIL CSSStyleValue interface: calling parse(USVString, USVString) on mathSum with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
194
FAIL CSSStyleValue interface: mathSum must inherit property "parseAll(USVString, USVString)" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
194
FAIL CSSStyleValue interface: mathSum must inherit property "parseAll(USVString, USVString)" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
195
FAIL CSSStyleValue interface: calling parseAll(USVString, USVString) on mathSum with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
195
FAIL CSSStyleValue interface: calling parseAll(USVString, USVString) on mathSum with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: mathSum"
196
FAIL CSSMathProduct interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathProduct" expected property "CSSMathProduct" missing
196
PASS CSSMathProduct interface: existence and properties of interface object
197
FAIL CSSMathProduct interface object length assert_own_property: self does not have own property "CSSMathProduct" expected property "CSSMathProduct" missing
197
PASS CSSMathProduct interface object length
198
FAIL CSSMathProduct interface object name assert_own_property: self does not have own property "CSSMathProduct" expected property "CSSMathProduct" missing
198
PASS CSSMathProduct interface object name
199
FAIL CSSMathProduct interface: existence and properties of interface prototype object assert_own_property: self does not have own property "CSSMathProduct" expected property "CSSMathProduct" missing
199
PASS CSSMathProduct interface: existence and properties of interface prototype object
200
FAIL CSSMathProduct interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "CSSMathProduct" expected property "CSSMathProduct" missing
200
PASS CSSMathProduct interface: existence and properties of interface prototype object's "constructor" property
201
FAIL CSSMathProduct interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "CSSMathProduct" expected property "CSSMathProduct" missing
201
PASS CSSMathProduct interface: existence and properties of interface prototype object's @@unscopables property
202
FAIL CSSMathProduct interface: attribute values assert_own_property: self does not have own property "CSSMathProduct" expected property "CSSMathProduct" missing
202
PASS CSSMathProduct interface: attribute values
203
FAIL CSSMathNegate interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathNegate" expected property "CSSMathNegate" missing
203
PASS CSSMathNegate interface: existence and properties of interface object
204
FAIL CSSMathNegate interface object length assert_own_property: self does not have own property "CSSMathNegate" expected property "CSSMathNegate" missing
204
PASS CSSMathNegate interface object length
205
FAIL CSSMathNegate interface object name assert_own_property: self does not have own property "CSSMathNegate" expected property "CSSMathNegate" missing
205
PASS CSSMathNegate interface object name
206
FAIL CSSMathNegate interface: existence and properties of interface prototype object assert_own_property: self does not have own property "CSSMathNegate" expected property "CSSMathNegate" missing
206
PASS CSSMathNegate interface: existence and properties of interface prototype object
207
FAIL CSSMathNegate interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "CSSMathNegate" expected property "CSSMathNegate" missing
207
PASS CSSMathNegate interface: existence and properties of interface prototype object's "constructor" property
208
FAIL CSSMathNegate interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "CSSMathNegate" expected property "CSSMathNegate" missing
208
PASS CSSMathNegate interface: existence and properties of interface prototype object's @@unscopables property
209
FAIL CSSMathNegate interface: attribute value assert_own_property: self does not have own property "CSSMathNegate" expected property "CSSMathNegate" missing
209
PASS CSSMathNegate interface: attribute value
210
FAIL CSSMathInvert interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathInvert" expected property "CSSMathInvert" missing
210
PASS CSSMathInvert interface: existence and properties of interface object
211
FAIL CSSMathInvert interface object length assert_own_property: self does not have own property "CSSMathInvert" expected property "CSSMathInvert" missing
211
PASS CSSMathInvert interface object length
212
FAIL CSSMathInvert interface object name assert_own_property: self does not have own property "CSSMathInvert" expected property "CSSMathInvert" missing
212
PASS CSSMathInvert interface object name
213
FAIL CSSMathInvert interface: existence and properties of interface prototype object assert_own_property: self does not have own property "CSSMathInvert" expected property "CSSMathInvert" missing
213
PASS CSSMathInvert interface: existence and properties of interface prototype object
214
FAIL CSSMathInvert interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "CSSMathInvert" expected property "CSSMathInvert" missing
214
PASS CSSMathInvert interface: existence and properties of interface prototype object's "constructor" property
215
FAIL CSSMathInvert interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "CSSMathInvert" expected property "CSSMathInvert" missing
215
PASS CSSMathInvert interface: existence and properties of interface prototype object's @@unscopables property
216
FAIL CSSMathInvert interface: attribute value assert_own_property: self does not have own property "CSSMathInvert" expected property "CSSMathInvert" missing
216
PASS CSSMathInvert interface: attribute value
217
FAIL CSSMathMin interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathMin" expected property "CSSMathMin" missing
217
PASS CSSMathMin interface: existence and properties of interface object
218
FAIL CSSMathMin interface object length assert_own_property: self does not have own property "CSSMathMin" expected property "CSSMathMin" missing
218
PASS CSSMathMin interface object length
219
FAIL CSSMathMin interface object name assert_own_property: self does not have own property "CSSMathMin" expected property "CSSMathMin" missing
219
PASS CSSMathMin interface object name
220
FAIL CSSMathMin interface: existence and properties of interface prototype object assert_own_property: self does not have own property "CSSMathMin" expected property "CSSMathMin" missing
220
PASS CSSMathMin interface: existence and properties of interface prototype object
221
FAIL CSSMathMin interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "CSSMathMin" expected property "CSSMathMin" missing
221
PASS CSSMathMin interface: existence and properties of interface prototype object's "constructor" property
222
FAIL CSSMathMin interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "CSSMathMin" expected property "CSSMathMin" missing
222
PASS CSSMathMin interface: existence and properties of interface prototype object's @@unscopables property
223
FAIL CSSMathMin interface: attribute values assert_own_property: self does not have own property "CSSMathMin" expected property "CSSMathMin" missing
223
PASS CSSMathMin interface: attribute values
224
FAIL CSSMathMax interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathMax" expected property "CSSMathMax" missing
224
PASS CSSMathMax interface: existence and properties of interface object
225
FAIL CSSMathMax interface object length assert_own_property: self does not have own property "CSSMathMax" expected property "CSSMathMax" missing
225
PASS CSSMathMax interface object length
226
FAIL CSSMathMax interface object name assert_own_property: self does not have own property "CSSMathMax" expected property "CSSMathMax" missing
226
PASS CSSMathMax interface object name
227
FAIL CSSMathMax interface: existence and properties of interface prototype object assert_own_property: self does not have own property "CSSMathMax" expected property "CSSMathMax" missing
227
PASS CSSMathMax interface: existence and properties of interface prototype object
228
FAIL CSSMathMax interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "CSSMathMax" expected property "CSSMathMax" missing
228
PASS CSSMathMax interface: existence and properties of interface prototype object's "constructor" property
229
FAIL CSSMathMax interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "CSSMathMax" expected property "CSSMathMax" missing
229
PASS CSSMathMax interface: existence and properties of interface prototype object's @@unscopables property
230
FAIL CSSMathMax interface: attribute values assert_own_property: self does not have own property "CSSMathMax" expected property "CSSMathMax" missing
230
PASS CSSMathMax interface: attribute values
231
FAIL CSSMathClamp interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
231
FAIL CSSMathClamp interface: existence and properties of interface object assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
232
FAIL CSSMathClamp interface object length assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
232
FAIL CSSMathClamp interface object length assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
233
FAIL CSSMathClamp interface object name assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
233
FAIL CSSMathClamp interface object name assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
Lines 237-250 FAIL CSSMathClamp interface: existence and properties of interface prototype obj a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/idlharness-expected.txt_sec4
237
FAIL CSSMathClamp interface: attribute min assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
237
FAIL CSSMathClamp interface: attribute min assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
238
FAIL CSSMathClamp interface: attribute val assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
238
FAIL CSSMathClamp interface: attribute val assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
239
FAIL CSSMathClamp interface: attribute max assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
239
FAIL CSSMathClamp interface: attribute max assert_own_property: self does not have own property "CSSMathClamp" expected property "CSSMathClamp" missing
240
FAIL CSSNumericArray interface: existence and properties of interface object assert_own_property: self does not have own property "CSSNumericArray" expected property "CSSNumericArray" missing
240
PASS CSSNumericArray interface: existence and properties of interface object
241
FAIL CSSNumericArray interface object length assert_own_property: self does not have own property "CSSNumericArray" expected property "CSSNumericArray" missing
241
PASS CSSNumericArray interface object length
242
FAIL CSSNumericArray interface object name assert_own_property: self does not have own property "CSSNumericArray" expected property "CSSNumericArray" missing
242
PASS CSSNumericArray interface object name
243
FAIL CSSNumericArray interface: existence and properties of interface prototype object assert_own_property: self does not have own property "CSSNumericArray" expected property "CSSNumericArray" missing
243
PASS CSSNumericArray interface: existence and properties of interface prototype object
244
FAIL CSSNumericArray interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "CSSNumericArray" expected property "CSSNumericArray" missing
244
PASS CSSNumericArray interface: existence and properties of interface prototype object's "constructor" property
245
FAIL CSSNumericArray interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "CSSNumericArray" expected property "CSSNumericArray" missing
245
PASS CSSNumericArray interface: existence and properties of interface prototype object's @@unscopables property
246
FAIL CSSNumericArray interface: iterable<CSSNumericValue> undefined is not an object (evaluating 'this.get_interface_object().prototype')
246
PASS CSSNumericArray interface: iterable<CSSNumericValue>
247
FAIL CSSNumericArray interface: attribute length assert_own_property: self does not have own property "CSSNumericArray" expected property "CSSNumericArray" missing
247
PASS CSSNumericArray interface: attribute length
248
FAIL CSSTransformValue interface: existence and properties of interface object assert_own_property: self does not have own property "CSSTransformValue" expected property "CSSTransformValue" missing
248
FAIL CSSTransformValue interface: existence and properties of interface object assert_own_property: self does not have own property "CSSTransformValue" expected property "CSSTransformValue" missing
249
FAIL CSSTransformValue interface object length assert_own_property: self does not have own property "CSSTransformValue" expected property "CSSTransformValue" missing
249
FAIL CSSTransformValue interface object length assert_own_property: self does not have own property "CSSTransformValue" expected property "CSSTransformValue" missing
250
FAIL CSSTransformValue interface object name assert_own_property: self does not have own property "CSSTransformValue" expected property "CSSTransformValue" missing
250
FAIL CSSTransformValue interface object name assert_own_property: self does not have own property "CSSTransformValue" expected property "CSSTransformValue" missing
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/rotate-by-added-angle-expected.txt -1 / +1 lines
Lines 1-4 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/rotate-by-added-angle-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSTransformValue
2
layer at (0,0) size 800x600
2
layer at (0,0) size 800x600
3
  RenderView at (0,0) size 800x600
3
  RenderView at (0,0) size 800x600
4
layer at (0,0) size 800x50
4
layer at (0,0) size 800x50
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-normalization/normalize-numeric.tentative-expected.txt -5 / +5 lines
Lines 1-8 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-normalization/normalize-numeric.tentative-expected.txt_sec1
1
1
2
FAIL Normalizing a <number> returns a number CSSUnitValue Not enough arguments
2
FAIL Normalizing a <number> returns a number CSSUnitValue Not implemented Error
3
FAIL Normalizing a <percentage> returns a percent CSSUnitValue Not enough arguments
3
FAIL Normalizing a <percentage> returns a percent CSSUnitValue Not implemented Error
4
FAIL Normalizing a <dimension> returns a CSSUnitValue with the correct unit Not enough arguments
4
FAIL Normalizing a <dimension> returns a CSSUnitValue with the correct unit Not implemented Error
5
FAIL Normalizing a <number> with a unitless zero returns 0 Not enough arguments
5
FAIL Normalizing a <number> with a unitless zero returns 0 Not implemented Error
6
FAIL Normalizing a <calc> returns simplified expression Can't find variable: CSSMathSum
6
FAIL Normalizing a <calc> returns simplified expression Not implemented Error
7
FAIL Normalizing a <dimension> with a unitless zero returns 0px 0px cannot be parsed as a width
7
FAIL Normalizing a <dimension> with a unitless zero returns 0px 0px cannot be parsed as a width
8
8
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-normalization/normalize-tokens.tentative.html -1 lines
Lines 57-63 for (const {value, expectedResult} of gTestCases) { a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-normalization/normalize-tokens.tentative.html_sec1
57
57
58
  test(t => {
58
  test(t => {
59
    assert_string_normalizes_to(t, 'margin', value, new CSSUnparsedValue(expectedResult));
59
    assert_string_normalizes_to(t, 'margin', value, new CSSUnparsedValue(expectedResult));
60
    assert_false(true);
61
  }, 'Normalizing "' + value + '" on a shorthand returns correct CSSUnparsedValue');
60
  }, 'Normalizing "' + value + '" on a shorthand returns correct CSSUnparsedValue');
62
61
63
  test(t => {
62
  test(t => {
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-normalization/positionvalue-normalization.tentative-expected.txt -3 / +47 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-normalization/positionvalue-normalization.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL CSS <position> value "left" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
3
FAIL CSS <position> value "right" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
4
FAIL CSS <position> value "center" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
5
FAIL CSS <position> value "top" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
6
FAIL CSS <position> value "bottom" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
7
FAIL CSS <position> value "3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
8
FAIL CSS <position> value "25%" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
9
FAIL CSS <position> value "left top" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
10
FAIL CSS <position> value "left center" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
11
FAIL CSS <position> value "left bottom" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
12
FAIL CSS <position> value "left 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
13
FAIL CSS <position> value "left 10%" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
14
FAIL CSS <position> value "left calc(1px + 1em)" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
15
FAIL CSS <position> value "center top" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
16
FAIL CSS <position> value "center center" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
17
FAIL CSS <position> value "center bottom" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
18
FAIL CSS <position> value "center 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
19
FAIL CSS <position> value "center 10%" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
20
FAIL CSS <position> value "center calc(1px + 1em)" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
21
FAIL CSS <position> value "right top" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
22
FAIL CSS <position> value "right center" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
23
FAIL CSS <position> value "right bottom" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
24
FAIL CSS <position> value "right 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
25
FAIL CSS <position> value "right 10%" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
26
FAIL CSS <position> value "right calc(1px + 1em)" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
27
FAIL CSS <position> value "3.14px top" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
28
FAIL CSS <position> value "3.14px center" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
29
FAIL CSS <position> value "3.14px bottom" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
30
FAIL CSS <position> value "3.14px 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
31
FAIL CSS <position> value "3.14px 10%" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
32
FAIL CSS <position> value "3.14px calc(1px + 1em)" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
33
FAIL CSS <position> value "10% top" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
34
FAIL CSS <position> value "10% center" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
35
FAIL CSS <position> value "10% bottom" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
36
FAIL CSS <position> value "10% 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
37
FAIL CSS <position> value "10% 10%" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
38
FAIL CSS <position> value "10% calc(1px + 1em)" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
39
FAIL CSS <position> value "calc(1px + 1em) top" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
40
FAIL CSS <position> value "calc(1px + 1em) center" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
41
FAIL CSS <position> value "calc(1px + 1em) bottom" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
42
FAIL CSS <position> value "calc(1px + 1em) 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
43
FAIL CSS <position> value "calc(1px + 1em) 10%" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
44
FAIL CSS <position> value "calc(1px + 1em) calc(1px + 1em)" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
45
FAIL CSS <position> value "left 3.14px top 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
46
FAIL CSS <position> value "left 3.14px bottom 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
47
FAIL CSS <position> value "right 3.14px top 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
48
FAIL CSS <position> value "right 3.14px bottom 3.14px" normalizes to CSSPositionValue Can't find variable: CSSPositionValue
5
49
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-serialization/crashtests/cssTransform-Internal-value-expected.txt -1 / +1 lines
Lines 1-4 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-serialization/crashtests/cssTransform-Internal-value-expected.txt_sec1
1
CONSOLE MESSAGE: TypeError: v98.div is not a function. (In 'v98.div(CSS.px(1))', 'v98.div' is undefined)
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSTranslate
2
layer at (0,0) size 800x600
2
layer at (0,0) size 800x600
3
  RenderView at (0,0) size 800x600
3
  RenderView at (0,0) size 800x600
4
layer at (0,0) size 800x8
4
layer at (0,0) size 800x8
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-serialization/cssMathValue.tentative-expected.txt -3 / +20 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-serialization/cssMathValue.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathMax
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathMax
4
1
2
FAIL CSSMathMax with one argument serializes correctly assert_equals: expected "max(1)" but got ""
3
FAIL CSSMathMax with more than one argument serializes correctly assert_equals: expected "max(1, 2, 3)" but got ""
4
FAIL CSSMathMax containing nested CSSMathValues serializes correctly assert_equals: expected "max(1 + 2, 3)" but got ""
5
FAIL CSSMathMin with one argument serializes correctly assert_equals: expected "min(1)" but got ""
6
FAIL CSSMathMin with more than one argument serializes correctly assert_equals: expected "min(1, 2, 3)" but got ""
7
FAIL CSSMathMin containing nested CSSMathValues serializes correctly assert_equals: expected "min(1 + 2, 3)" but got ""
8
FAIL CSSMathSum with one argument serializes correctly assert_equals: expected "calc(1)" but got ""
9
FAIL CSSMathSum with more than one argument serializes correctly assert_equals: expected "calc(1 + 2 + 3)" but got ""
10
FAIL CSSMathSum with a CSSMathNegate as first value serializes correctly assert_equals: expected "calc((-1) + 2 + 3)" but got ""
11
FAIL CSSMathSum containing a CSSMathNegate after first value serializes correctly assert_equals: expected "calc(1 - 2 + 3)" but got ""
12
FAIL CSSMathSum nested inside a CSSMathValue serializes correctly assert_equals: expected "calc((1 + 2) + 3)" but got ""
13
FAIL CSSMathNegate serializes correctly assert_equals: expected "calc(-1)" but got ""
14
FAIL CSSMathNegate nested inside a CSSMathValue serializes correctly assert_equals: expected "calc((-1))" but got ""
15
FAIL CSSMathProduct with one argument serializes correctly assert_equals: expected "calc(1)" but got ""
16
FAIL CSSMathProduct with more than one argument serializes correctly assert_equals: expected "calc(1 * 2 * 3)" but got ""
17
FAIL CSSMathProduct with a CSSMathInvert as first value serializes correctly assert_equals: expected "calc((1 / 1) * 2 * 3)" but got ""
18
FAIL CSSMathProduct containing a CSSMathInvert after first value serializes correctly assert_equals: expected "calc(1 / 2 * 3)" but got ""
19
FAIL CSSMathProduct nested inside a CSSMathValue serializes correctly assert_equals: expected "calc((1 * 2) * 3)" but got ""
20
FAIL CSSMathInvert serializes correctly assert_equals: expected "calc(1 / 1)" but got ""
21
FAIL CSSMathInvert nested inside a CSSMathValue serializes correctly assert_equals: expected "calc((1 / 1))" but got ""
5
22
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPerspective.tentative-expected.txt -3 / +33 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPerspective.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSPerspective with a keyword throws a TypeError assert_throws_js: function "() => new CSSPerspective(length)" threw object "ReferenceError: Can't find variable: CSSPerspective" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Constructing a CSSPerspective with a double throws a TypeError assert_throws_js: function "() => new CSSPerspective(length)" threw object "ReferenceError: Can't find variable: CSSPerspective" ("ReferenceError") expected instance of function "function TypeError() {
6
    [native code]
7
}" ("TypeError")
8
FAIL Constructing a CSSPerspective with a unitless zero throws a TypeError assert_throws_js: function "() => new CSSPerspective(length)" threw object "ReferenceError: Can't find variable: CSSPerspective" ("ReferenceError") expected instance of function "function TypeError() {
9
    [native code]
10
}" ("TypeError")
11
FAIL Constructing a CSSPerspective with a string length throws a TypeError assert_throws_js: function "() => new CSSPerspective(length)" threw object "ReferenceError: Can't find variable: CSSPerspective" ("ReferenceError") expected instance of function "function TypeError() {
12
    [native code]
13
}" ("TypeError")
14
FAIL Constructing a CSSPerspective with a number CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSPerspective(length)" threw object "ReferenceError: Can't find variable: CSSPerspective" ("ReferenceError") expected instance of function "function TypeError() {
15
    [native code]
16
}" ("TypeError")
17
FAIL Constructing a CSSPerspective with a time dimension CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSPerspective(length)" threw object "ReferenceError: Can't find variable: CSSPerspective" ("ReferenceError") expected instance of function "function TypeError() {
18
    [native code]
19
}" ("TypeError")
20
FAIL Constructing a CSSPerspective with a CSSMathValue of angle type throws a TypeError assert_throws_js: function "() => new CSSPerspective(length)" threw object "ReferenceError: Can't find variable: CSSPerspective" ("ReferenceError") expected instance of function "function TypeError() {
21
    [native code]
22
}" ("TypeError")
23
FAIL Updating CSSPerspective.length with a keyword throws a TypeError Can't find variable: CSSPerspective
24
FAIL Updating CSSPerspective.length with a double throws a TypeError Can't find variable: CSSPerspective
25
FAIL Updating CSSPerspective.length with a unitless zero throws a TypeError Can't find variable: CSSPerspective
26
FAIL Updating CSSPerspective.length with a string length throws a TypeError Can't find variable: CSSPerspective
27
FAIL Updating CSSPerspective.length with a number CSSUnitValue throws a TypeError Can't find variable: CSSPerspective
28
FAIL Updating CSSPerspective.length with a time dimension CSSUnitValue throws a TypeError Can't find variable: CSSPerspective
29
FAIL Updating CSSPerspective.length with a CSSMathValue of angle type throws a TypeError Can't find variable: CSSPerspective
30
FAIL CSSPerspective can be constructed from a length CSSUnitValue Can't find variable: CSSPerspective
31
FAIL CSSPerspective.length can be updated to a length CSSUnitValue Can't find variable: CSSPerspective
32
FAIL CSSPerspective can be constructed from a CSSMathValue of length type Can't find variable: CSSPerspective
33
FAIL CSSPerspective.length can be updated to a CSSMathValue of length type Can't find variable: CSSPerspective
34
FAIL Modifying CSSPerspective.is2D is a no-op Can't find variable: CSSPerspective
5
35
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPositionValue-expected.txt -3 / +12 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPositionValue-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL CSSPositionValue can be constructed from a length CSSUnitValue Can't find variable: CSSPositionValue
3
FAIL CSSPositionValue can be constructed from a percent CSSUnitValue Can't find variable: CSSPositionValue
4
FAIL CSSPositionValue can be constructed from a CSSMathValue of length type Can't find variable: CSSPositionValue
5
FAIL CSSPositionValue can be constructed from a CSSMathValue of percent type Can't find variable: CSSPositionValue
6
FAIL CSSPositionValue.x can be updated to a length CSSUnitValue Can't find variable: CSSPositionValue
7
FAIL CSSPositionValue.y can be updated to a length CSSUnitValue Can't find variable: CSSPositionValue
8
FAIL CSSPositionValue.x can be updated to a percent CSSUnitValue Can't find variable: CSSPositionValue
9
FAIL CSSPositionValue.y can be updated to a percent CSSUnitValue Can't find variable: CSSPositionValue
10
FAIL CSSPositionValue.x can be updated to a CSSMathValue of length type Can't find variable: CSSPositionValue
11
FAIL CSSPositionValue.y can be updated to a CSSMathValue of length type Can't find variable: CSSPositionValue
12
FAIL CSSPositionValue.x can be updated to a CSSMathValue of percent type Can't find variable: CSSPositionValue
13
FAIL CSSPositionValue.y can be updated to a CSSMathValue of percent type Can't find variable: CSSPositionValue
5
14
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPositionValue-invalid-expected.txt -3 / +35 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssPositionValue-invalid-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSPositionValue with a keyword throws a TypeError assert_throws_js: function "() => new CSSPositionValue(value, CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSPositionValue" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Updating CSSPositionValue.x with a keyword throws a TypeError Can't find variable: CSSPositionValue
6
FAIL Updating CSSPositionValue.y with a keyword throws a TypeError Can't find variable: CSSPositionValue
7
FAIL Constructing a CSSPositionValue with a double throws a TypeError assert_throws_js: function "() => new CSSPositionValue(value, CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSPositionValue" ("ReferenceError") expected instance of function "function TypeError() {
8
    [native code]
9
}" ("TypeError")
10
FAIL Updating CSSPositionValue.x with a double throws a TypeError Can't find variable: CSSPositionValue
11
FAIL Updating CSSPositionValue.y with a double throws a TypeError Can't find variable: CSSPositionValue
12
FAIL Constructing a CSSPositionValue with a unitless zero throws a TypeError assert_throws_js: function "() => new CSSPositionValue(value, CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSPositionValue" ("ReferenceError") expected instance of function "function TypeError() {
13
    [native code]
14
}" ("TypeError")
15
FAIL Updating CSSPositionValue.x with a unitless zero throws a TypeError Can't find variable: CSSPositionValue
16
FAIL Updating CSSPositionValue.y with a unitless zero throws a TypeError Can't find variable: CSSPositionValue
17
FAIL Constructing a CSSPositionValue with a string length throws a TypeError assert_throws_js: function "() => new CSSPositionValue(value, CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSPositionValue" ("ReferenceError") expected instance of function "function TypeError() {
18
    [native code]
19
}" ("TypeError")
20
FAIL Updating CSSPositionValue.x with a string length throws a TypeError Can't find variable: CSSPositionValue
21
FAIL Updating CSSPositionValue.y with a string length throws a TypeError Can't find variable: CSSPositionValue
22
FAIL Constructing a CSSPositionValue with a number CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSPositionValue(value, CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSPositionValue" ("ReferenceError") expected instance of function "function TypeError() {
23
    [native code]
24
}" ("TypeError")
25
FAIL Updating CSSPositionValue.x with a number CSSUnitValue throws a TypeError Can't find variable: CSSPositionValue
26
FAIL Updating CSSPositionValue.y with a number CSSUnitValue throws a TypeError Can't find variable: CSSPositionValue
27
FAIL Constructing a CSSPositionValue with a time CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSPositionValue(value, CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSPositionValue" ("ReferenceError") expected instance of function "function TypeError() {
28
    [native code]
29
}" ("TypeError")
30
FAIL Updating CSSPositionValue.x with a time CSSUnitValue throws a TypeError Can't find variable: CSSPositionValue
31
FAIL Updating CSSPositionValue.y with a time CSSUnitValue throws a TypeError Can't find variable: CSSPositionValue
32
FAIL Constructing a CSSPositionValue with a CSSMathValue of angle type throws a TypeError assert_throws_js: function "() => new CSSPositionValue(value, CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSPositionValue" ("ReferenceError") expected instance of function "function TypeError() {
33
    [native code]
34
}" ("TypeError")
35
FAIL Updating CSSPositionValue.x with a CSSMathValue of angle type throws a TypeError Can't find variable: CSSPositionValue
36
FAIL Updating CSSPositionValue.y with a CSSMathValue of angle type throws a TypeError Can't find variable: CSSPositionValue
5
37
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssRGB-expected.txt -3 / +63 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssRGB-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSRGB with an angle CSSUnitValue for the color channels throws a TypeError. assert_throws_js: function "() => new CSSRGB(color, 0, 0)" threw object "ReferenceError: Can't find variable: CSSRGB" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Constructing a CSSRGB with a CSSMathValue that doesn"t match <number> for the color channels throws a TypeError. assert_throws_js: function "() => new CSSRGB(color, 0, 0)" threw object "ReferenceError: Can't find variable: CSSRGB" ("ReferenceError") expected instance of function "function TypeError() {
6
    [native code]
7
}" ("TypeError")
8
FAIL Constructing a CSSRGB with undefined for the color channels throws a TypeError. assert_throws_js: function "() => new CSSRGB(color, 0, 0)" threw object "ReferenceError: Can't find variable: CSSRGB" ("ReferenceError") expected instance of function "function TypeError() {
9
    [native code]
10
}" ("TypeError")
11
FAIL Constructing a CSSRGB with a CSS math calculation for the color channels throws a TypeError. assert_throws_js: function "() => new CSSRGB(color, 0, 0)" threw object "ReferenceError: Can't find variable: CSSRGB" ("ReferenceError") expected instance of function "function TypeError() {
12
    [native code]
13
}" ("TypeError")
14
FAIL Constructing a CSSRGB with a CSS number for the alpha channels throws a TypeError. assert_throws_js: function "() => new CSSRGB(0, 0, 0, CSS.number(1))" threw object "ReferenceError: Can't find variable: CSSRGB" ("ReferenceError") expected instance of function "function TypeError() {
15
    [native code]
16
}" ("TypeError")
17
FAIL Updating CSSRGB. r to an angle CSSUnitValue throws a TypeError. Can't find variable: CSSRGB
18
FAIL Updating CSSRGB. r to a CSSMathValue that doesn"t match <number> throws a TypeError. Can't find variable: CSSRGB
19
FAIL Updating CSSRGB. r to undefined throws a TypeError. Can't find variable: CSSRGB
20
FAIL Updating CSSRGB. r to a CSS math calculation throws a TypeError. Can't find variable: CSSRGB
21
FAIL Updating CSSRGB. g to an angle CSSUnitValue throws a TypeError. Can't find variable: CSSRGB
22
FAIL Updating CSSRGB. g to a CSSMathValue that doesn"t match <number> throws a TypeError. Can't find variable: CSSRGB
23
FAIL Updating CSSRGB. g to undefined throws a TypeError. Can't find variable: CSSRGB
24
FAIL Updating CSSRGB. g to a CSS math calculation throws a TypeError. Can't find variable: CSSRGB
25
FAIL Updating CSSRGB. b to an angle CSSUnitValue throws a TypeError. Can't find variable: CSSRGB
26
FAIL Updating CSSRGB. b to a CSSMathValue that doesn"t match <number> throws a TypeError. Can't find variable: CSSRGB
27
FAIL Updating CSSRGB. b to undefined throws a TypeError. Can't find variable: CSSRGB
28
FAIL Updating CSSRGB. b to a CSS math calculation throws a TypeError. Can't find variable: CSSRGB
29
FAIL Updating CSSRGB. alpha to an angle CSSUnitValue throws a TypeError. Can't find variable: CSSRGB
30
FAIL Updating CSSRGB. alpha to a CSSMathValue that doesn"t match <number> throws a TypeError. Can't find variable: CSSRGB
31
FAIL Updating CSSRGB. alpha to undefined throws a TypeError. Can't find variable: CSSRGB
32
FAIL Updating CSSRGB. alpha to a CSS math calculation throws a TypeError. Can't find variable: CSSRGB
33
FAIL Updating the alpha channel to a CSS number throws a TypeError. Can't find variable: CSSRGB
34
FAIL CSSRGB can be constructed from three numbers and will get an alpha of 100%. Can't find variable: CSSRGB
35
FAIL CSSRGB can be constructed from four numbers. Can't find variable: CSSRGB
36
FAIL CSSRGB.r can be updated with a number with the resulting value being a percentage. Can't find variable: CSSRGB
37
FAIL CSSRGB.r can be updated with a CSS number. Can't find variable: CSSRGB
38
FAIL CSSRGB.r can be updated with CSS percent. Can't find variable: CSSRGB
39
FAIL CSSRGB.r can be updated with CSS math sum. Can't find variable: CSSRGB
40
FAIL CSSRGB.r can be updated with CSS math product. Can't find variable: CSSRGB
41
FAIL CSSRGB.r can be updated with CSS math max. Can't find variable: CSSRGB
42
FAIL CSSRGB.r can be updated with CSS math min. Can't find variable: CSSRGB
43
FAIL CSSRGB.g can be updated with a number with the resulting value being a percentage. Can't find variable: CSSRGB
44
FAIL CSSRGB.g can be updated with a CSS number. Can't find variable: CSSRGB
45
FAIL CSSRGB.g can be updated with CSS percent. Can't find variable: CSSRGB
46
FAIL CSSRGB.g can be updated with CSS math sum. Can't find variable: CSSRGB
47
FAIL CSSRGB.g can be updated with CSS math product. Can't find variable: CSSRGB
48
FAIL CSSRGB.g can be updated with CSS math max. Can't find variable: CSSRGB
49
FAIL CSSRGB.g can be updated with CSS math min. Can't find variable: CSSRGB
50
FAIL CSSRGB.b can be updated with a number with the resulting value being a percentage. Can't find variable: CSSRGB
51
FAIL CSSRGB.b can be updated with a CSS number. Can't find variable: CSSRGB
52
FAIL CSSRGB.b can be updated with CSS percent. Can't find variable: CSSRGB
53
FAIL CSSRGB.b can be updated with CSS math sum. Can't find variable: CSSRGB
54
FAIL CSSRGB.b can be updated with CSS math product. Can't find variable: CSSRGB
55
FAIL CSSRGB.b can be updated with CSS math max. Can't find variable: CSSRGB
56
FAIL CSSRGB.b can be updated with CSS math min. Can't find variable: CSSRGB
57
FAIL CSSRGB.alpha can be updated with a number with the resulting value being a percentage. Can't find variable: CSSRGB
58
FAIL CSSRGB.alpha can be updated with CSS percent. Can't find variable: CSSRGB
59
FAIL CSSRGB.alpha can be updated with CSS math sum. Can't find variable: CSSRGB
60
FAIL CSSRGB.alpha can be updated with CSS math product. Can't find variable: CSSRGB
61
FAIL CSSRGB.alpha can be updated with CSS math max. Can't find variable: CSSRGB
62
FAIL CSSRGB.alpha can be updated with CSS math min. Can't find variable: CSSRGB
63
FAIL toRGB function evaluates sum, product and max objects. Can't find variable: CSSRGB
64
FAIL toRGB() function works as expected and values can be updated. Can't find variable: CSSRGB
5
65
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssRotate.tentative-expected.txt -3 / +35 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssRotate.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSRotate with a CSSUnitValue with type other than angle for the angle throws a TypeError assert_throws_js: function "() => new CSSRotate(angle)" threw object "ReferenceError: Can't find variable: CSSRotate" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Constructing a CSSRotate with a CSSMathValue that doesn't match <angle> for the angle throws a TypeError assert_throws_js: function "() => new CSSRotate(angle)" threw object "ReferenceError: Can't find variable: CSSRotate" ("ReferenceError") expected instance of function "function TypeError() {
6
    [native code]
7
}" ("TypeError")
8
FAIL Constructing a CSSRotate with a CSSUnitValue with type other than number for the coordinates throws a TypeError assert_throws_js: function "() => new CSSRotate(coord, 0, 0, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSRotate" ("ReferenceError") expected instance of function "function TypeError() {
9
    [native code]
10
}" ("TypeError")
11
FAIL Constructing a CSSRotate with a CSSMathValue that doesn't match <number> for the coordinates throws a TypeError assert_throws_js: function "() => new CSSRotate(coord, 0, 0, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSRotate" ("ReferenceError") expected instance of function "function TypeError() {
12
    [native code]
13
}" ("TypeError")
14
FAIL Updating CSSRotate.x to a CSSUnitValue with type other than number throws a TypeError Can't find variable: CSSRotate
15
FAIL Updating CSSRotate.x to a CSSMathValue that doesn't match <number> throws a TypeError Can't find variable: CSSRotate
16
FAIL Updating CSSRotate.y to a CSSUnitValue with type other than number throws a TypeError Can't find variable: CSSRotate
17
FAIL Updating CSSRotate.y to a CSSMathValue that doesn't match <number> throws a TypeError Can't find variable: CSSRotate
18
FAIL Updating CSSRotate.z to a CSSUnitValue with type other than number throws a TypeError Can't find variable: CSSRotate
19
FAIL Updating CSSRotate.z to a CSSMathValue that doesn't match <number> throws a TypeError Can't find variable: CSSRotate
20
FAIL Updating CSSRotate.angle to a CSSUnitValue with type other than angle throws a TypeError Can't find variable: CSSRotate
21
FAIL Updating CSSRotate.angle to a CSSMathValue that doesn't match <angle> throws a TypeError Can't find variable: CSSRotate
22
FAIL CSSRotate can be constructed from a single angle Can't find variable: CSSRotate
23
FAIL CSSRotate can be constructed from numberish coordinates Can't find variable: CSSRotate
24
FAIL CSSRotate can be constructed from CSSMathValues Can't find variable: CSSRotate
25
FAIL CSSRotate.x can be updated to a double Can't find variable: CSSRotate
26
FAIL CSSRotate.x can be updated to a number CSSUnitValue Can't find variable: CSSRotate
27
FAIL CSSRotate.x can be updated to a CSSMathValue matching <number> Can't find variable: CSSRotate
28
FAIL CSSRotate.y can be updated to a double Can't find variable: CSSRotate
29
FAIL CSSRotate.y can be updated to a number CSSUnitValue Can't find variable: CSSRotate
30
FAIL CSSRotate.y can be updated to a CSSMathValue matching <number> Can't find variable: CSSRotate
31
FAIL CSSRotate.z can be updated to a double Can't find variable: CSSRotate
32
FAIL CSSRotate.z can be updated to a number CSSUnitValue Can't find variable: CSSRotate
33
FAIL CSSRotate.z can be updated to a CSSMathValue matching <number> Can't find variable: CSSRotate
34
FAIL CSSRotate.angle can be updated to a degree CSSUnitValue Can't find variable: CSSRotate
35
FAIL CSSRotate.angle can be updated to a CSSMathValue matching <angle> Can't find variable: CSSRotate
36
FAIL Modifying CSSRotate.is2D can be updated to true or false Can't find variable: CSSRotate
5
37
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssScale.tentative-expected.txt -3 / +31 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssScale.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSScale with an angle CSSUnitValue for the coordinates throws a TypeError assert_throws_js: function "() => new CSSScale(coord, 0)" threw object "ReferenceError: Can't find variable: CSSScale" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Constructing a CSSScale with a CSSMathValue that doesn't match <number> for the coordinates throws a TypeError assert_throws_js: function "() => new CSSScale(coord, 0)" threw object "ReferenceError: Can't find variable: CSSScale" ("ReferenceError") expected instance of function "function TypeError() {
6
    [native code]
7
}" ("TypeError")
8
FAIL Constructing a CSSScale with an invalid division by px/px for the coordinates throws a TypeError assert_throws_js: function "() => new CSSScale(coord, 0)" threw object "ReferenceError: Can't find variable: CSSScale" ("ReferenceError") expected instance of function "function TypeError() {
9
    [native code]
10
}" ("TypeError")
11
FAIL Updating CSSScale.x to an angle CSSUnitValue throws a TypeError Can't find variable: CSSScale
12
FAIL Updating CSSScale.x to a CSSMathValue that doesn't match <number> throws a TypeError Can't find variable: CSSScale
13
FAIL Updating CSSScale.x to an invalid division by px/px throws a TypeError Can't find variable: CSSScale
14
FAIL Updating CSSScale.y to an angle CSSUnitValue throws a TypeError Can't find variable: CSSScale
15
FAIL Updating CSSScale.y to a CSSMathValue that doesn't match <number> throws a TypeError Can't find variable: CSSScale
16
FAIL Updating CSSScale.y to an invalid division by px/px throws a TypeError Can't find variable: CSSScale
17
FAIL Updating CSSScale.z to an angle CSSUnitValue throws a TypeError Can't find variable: CSSScale
18
FAIL Updating CSSScale.z to a CSSMathValue that doesn't match <number> throws a TypeError Can't find variable: CSSScale
19
FAIL Updating CSSScale.z to an invalid division by px/px throws a TypeError Can't find variable: CSSScale
20
FAIL CSSScale can be constructed from two number coordinates Can't find variable: CSSScale
21
FAIL CSSScale can be constructed from three number coordinates Can't find variable: CSSScale
22
FAIL CSSScale can be constructed from CSSMathValue coordinates Can't find variable: CSSScale
23
FAIL CSSScale.x can be updated to a number Can't find variable: CSSScale
24
FAIL CSSScale.x can be updated to a numberish Can't find variable: CSSScale
25
FAIL CSSScale.x can be updated to a CSSMathValue Can't find variable: CSSScale
26
FAIL CSSScale.y can be updated to a number Can't find variable: CSSScale
27
FAIL CSSScale.y can be updated to a numberish Can't find variable: CSSScale
28
FAIL CSSScale.y can be updated to a CSSMathValue Can't find variable: CSSScale
29
FAIL CSSScale.z can be updated to a number Can't find variable: CSSScale
30
FAIL CSSScale.z can be updated to a numberish Can't find variable: CSSScale
31
FAIL CSSScale.z can be updated to a CSSMathValue Can't find variable: CSSScale
32
FAIL Modifying CSSScale.is2D can be updated to true or false Can't find variable: CSSScale
5
33
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkew.tentative-expected.txt -3 / +44 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkew.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSSkew with a keyword throws a TypeError assert_throws_js: function "() => new CSSSkew(value, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSSkew" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Constructing a CSSSkew with a double throws a TypeError assert_throws_js: function "() => new CSSSkew(value, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSSkew" ("ReferenceError") expected instance of function "function TypeError() {
6
    [native code]
7
}" ("TypeError")
8
FAIL Constructing a CSSSkew with a unitless zero throws a TypeError assert_throws_js: function "() => new CSSSkew(value, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSSkew" ("ReferenceError") expected instance of function "function TypeError() {
9
    [native code]
10
}" ("TypeError")
11
FAIL Constructing a CSSSkew with a string angle throws a TypeError assert_throws_js: function "() => new CSSSkew(value, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSSkew" ("ReferenceError") expected instance of function "function TypeError() {
12
    [native code]
13
}" ("TypeError")
14
FAIL Constructing a CSSSkew with a number CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSSkew(value, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSSkew" ("ReferenceError") expected instance of function "function TypeError() {
15
    [native code]
16
}" ("TypeError")
17
FAIL Constructing a CSSSkew with a time dimension CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSSkew(value, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSSkew" ("ReferenceError") expected instance of function "function TypeError() {
18
    [native code]
19
}" ("TypeError")
20
FAIL Constructing a CSSSkew with a CSSMathValue of length type throws a TypeError assert_throws_js: function "() => new CSSSkew(value, CSS.deg(0))" threw object "ReferenceError: Can't find variable: CSSSkew" ("ReferenceError") expected instance of function "function TypeError() {
21
    [native code]
22
}" ("TypeError")
23
FAIL Updating CSSSkew.ax with a keyword throws a TypeError Can't find variable: CSSSkew
24
FAIL Updating CSSSkew.ax with a double throws a TypeError Can't find variable: CSSSkew
25
FAIL Updating CSSSkew.ax with a unitless zero throws a TypeError Can't find variable: CSSSkew
26
FAIL Updating CSSSkew.ax with a string angle throws a TypeError Can't find variable: CSSSkew
27
FAIL Updating CSSSkew.ax with a number CSSUnitValue throws a TypeError Can't find variable: CSSSkew
28
FAIL Updating CSSSkew.ax with a time dimension CSSUnitValue throws a TypeError Can't find variable: CSSSkew
29
FAIL Updating CSSSkew.ax with a CSSMathValue of length type throws a TypeError Can't find variable: CSSSkew
30
FAIL Updating CSSSkew.ay with a keyword throws a TypeError Can't find variable: CSSSkew
31
FAIL Updating CSSSkew.ay with a double throws a TypeError Can't find variable: CSSSkew
32
FAIL Updating CSSSkew.ay with a unitless zero throws a TypeError Can't find variable: CSSSkew
33
FAIL Updating CSSSkew.ay with a string angle throws a TypeError Can't find variable: CSSSkew
34
FAIL Updating CSSSkew.ay with a number CSSUnitValue throws a TypeError Can't find variable: CSSSkew
35
FAIL Updating CSSSkew.ay with a time dimension CSSUnitValue throws a TypeError Can't find variable: CSSSkew
36
FAIL Updating CSSSkew.ay with a CSSMathValue of length type throws a TypeError Can't find variable: CSSSkew
37
FAIL CSSSkew can be constructed from an angle CSSUnitValue and an angle CSSUnitValue Can't find variable: CSSSkew
38
FAIL CSSSkew can be constructed from an angle CSSUnitValue and a CSSMathValue of angle type Can't find variable: CSSSkew
39
FAIL CSSSkew can be constructed from a CSSMathValue of angle type and an angle CSSUnitValue Can't find variable: CSSSkew
40
FAIL CSSSkew can be constructed from a CSSMathValue of angle type and a CSSMathValue of angle type Can't find variable: CSSSkew
41
FAIL CSSSkew.ax can be updated to an angle CSSUnitValue Can't find variable: CSSSkew
42
FAIL CSSSkew.ax can be updated to a CSSMathValue of angle type Can't find variable: CSSSkew
43
FAIL CSSSkew.ay can be updated to an angle CSSUnitValue Can't find variable: CSSSkew
44
FAIL CSSSkew.ay can be updated to a CSSMathValue of angle type Can't find variable: CSSSkew
45
FAIL Modifying CSSSkew.is2D is a no-op Can't find variable: CSSSkew
5
46
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkewX.tentative-expected.txt -3 / +33 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkewX.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSSkewX with a keyword throws a TypeError assert_throws_js: function "() => new CSSSkewX(value)" threw object "ReferenceError: Can't find variable: CSSSkewX" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Constructing a CSSSkewX with a double throws a TypeError assert_throws_js: function "() => new CSSSkewX(value)" threw object "ReferenceError: Can't find variable: CSSSkewX" ("ReferenceError") expected instance of function "function TypeError() {
6
    [native code]
7
}" ("TypeError")
8
FAIL Constructing a CSSSkewX with a unitless zero throws a TypeError assert_throws_js: function "() => new CSSSkewX(value)" threw object "ReferenceError: Can't find variable: CSSSkewX" ("ReferenceError") expected instance of function "function TypeError() {
9
    [native code]
10
}" ("TypeError")
11
FAIL Constructing a CSSSkewX with a string angle throws a TypeError assert_throws_js: function "() => new CSSSkewX(value)" threw object "ReferenceError: Can't find variable: CSSSkewX" ("ReferenceError") expected instance of function "function TypeError() {
12
    [native code]
13
}" ("TypeError")
14
FAIL Constructing a CSSSkewX with a number CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSSkewX(value)" threw object "ReferenceError: Can't find variable: CSSSkewX" ("ReferenceError") expected instance of function "function TypeError() {
15
    [native code]
16
}" ("TypeError")
17
FAIL Constructing a CSSSkewX with a time dimension CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSSkewX(value)" threw object "ReferenceError: Can't find variable: CSSSkewX" ("ReferenceError") expected instance of function "function TypeError() {
18
    [native code]
19
}" ("TypeError")
20
FAIL Constructing a CSSSkewX with a CSSMathValue of length type throws a TypeError assert_throws_js: function "() => new CSSSkewX(value)" threw object "ReferenceError: Can't find variable: CSSSkewX" ("ReferenceError") expected instance of function "function TypeError() {
21
    [native code]
22
}" ("TypeError")
23
FAIL Updating CSSSkewX.ax with a keyword throws a TypeError Can't find variable: CSSSkewX
24
FAIL Updating CSSSkewX.ax with a double throws a TypeError Can't find variable: CSSSkewX
25
FAIL Updating CSSSkewX.ax with a unitless zero throws a TypeError Can't find variable: CSSSkewX
26
FAIL Updating CSSSkewX.ax with a string angle throws a TypeError Can't find variable: CSSSkewX
27
FAIL Updating CSSSkewX.ax with a number CSSUnitValue throws a TypeError Can't find variable: CSSSkewX
28
FAIL Updating CSSSkewX.ax with a time dimension CSSUnitValue throws a TypeError Can't find variable: CSSSkewX
29
FAIL Updating CSSSkewX.ax with a CSSMathValue of length type throws a TypeError Can't find variable: CSSSkewX
30
FAIL CSSSkewX can be constructed from an angle CSSUnitValue Can't find variable: CSSSkewX
31
FAIL CSSSkewX can be constructed from a CSSMathValue of angle type Can't find variable: CSSSkewX
32
FAIL CSSSkew.ax can be updated to an angle CSSUnitValue Can't find variable: CSSSkewX
33
FAIL CSSSkew.ax can be updated to a CSSMathValue of angle type Can't find variable: CSSSkewX
34
FAIL Modifying skewX.is2D is a no-op Can't find variable: CSSSkewX
5
35
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkewY.tentative-expected.txt -3 / +33 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssSkewY.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSSkewY with a keyword throws a TypeError assert_throws_js: function "() => new CSSSkewY(value)" threw object "ReferenceError: Can't find variable: CSSSkewY" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Constructing a CSSSkewY with a double throws a TypeError assert_throws_js: function "() => new CSSSkewY(value)" threw object "ReferenceError: Can't find variable: CSSSkewY" ("ReferenceError") expected instance of function "function TypeError() {
6
    [native code]
7
}" ("TypeError")
8
FAIL Constructing a CSSSkewY with a unitless zero throws a TypeError assert_throws_js: function "() => new CSSSkewY(value)" threw object "ReferenceError: Can't find variable: CSSSkewY" ("ReferenceError") expected instance of function "function TypeError() {
9
    [native code]
10
}" ("TypeError")
11
FAIL Constructing a CSSSkewY with a string angle throws a TypeError assert_throws_js: function "() => new CSSSkewY(value)" threw object "ReferenceError: Can't find variable: CSSSkewY" ("ReferenceError") expected instance of function "function TypeError() {
12
    [native code]
13
}" ("TypeError")
14
FAIL Constructing a CSSSkewY with a number CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSSkewY(value)" threw object "ReferenceError: Can't find variable: CSSSkewY" ("ReferenceError") expected instance of function "function TypeError() {
15
    [native code]
16
}" ("TypeError")
17
FAIL Constructing a CSSSkewY with a time dimension CSSUnitValue throws a TypeError assert_throws_js: function "() => new CSSSkewY(value)" threw object "ReferenceError: Can't find variable: CSSSkewY" ("ReferenceError") expected instance of function "function TypeError() {
18
    [native code]
19
}" ("TypeError")
20
FAIL Constructing a CSSSkewY with a CSSMathValue of length type throws a TypeError assert_throws_js: function "() => new CSSSkewY(value)" threw object "ReferenceError: Can't find variable: CSSSkewY" ("ReferenceError") expected instance of function "function TypeError() {
21
    [native code]
22
}" ("TypeError")
23
FAIL Updating CSSSkewY.ay with a keyword throws a TypeError Can't find variable: CSSSkewY
24
FAIL Updating CSSSkewY.ay with a double throws a TypeError Can't find variable: CSSSkewY
25
FAIL Updating CSSSkewY.ay with a unitless zero throws a TypeError Can't find variable: CSSSkewY
26
FAIL Updating CSSSkewY.ay with a string angle throws a TypeError Can't find variable: CSSSkewY
27
FAIL Updating CSSSkewY.ay with a number CSSUnitValue throws a TypeError Can't find variable: CSSSkewY
28
FAIL Updating CSSSkewY.ay with a time dimension CSSUnitValue throws a TypeError Can't find variable: CSSSkewY
29
FAIL Updating CSSSkewY.ay with a CSSMathValue of length type throws a TypeError Can't find variable: CSSSkewY
30
FAIL CSSSkewY can be constructed from an angle CSSUnitValue Can't find variable: CSSSkewY
31
FAIL CSSSkewY can be constructed from a CSSMathValue of angle type Can't find variable: CSSSkewY
32
FAIL CSSSkewY.ay can be updated to an angle CSSUnitValue Can't find variable: CSSSkewY
33
FAIL CSSSkewY.ay can be updated to a CSSMathValue of angle type Can't find variable: CSSSkewY
34
FAIL Modifying skewY.is2D is a no-op Can't find variable: CSSSkewY
5
35
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssTranslate.tentative-expected.txt -3 / +28 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/cssTranslate.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSTranslate with a CSSUnitValue with type other than length or percent for the coordinates throws a TypeError assert_throws_js: function "() => new CSSTranslate(coord, CSS.px(0), CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSTranslate" ("ReferenceError") expected instance of function "function TypeError() {
3
    [native code]
4
}" ("TypeError")
5
FAIL Constructing a CSSTranslate with a CSSMathValue that doesn't match <length-percentage> for the coordinates throws a TypeError assert_throws_js: function "() => new CSSTranslate(coord, CSS.px(0), CSS.px(0))" threw object "ReferenceError: Can't find variable: CSSTranslate" ("ReferenceError") expected instance of function "function TypeError() {
6
    [native code]
7
}" ("TypeError")
8
FAIL Constructing a CSSTranslate with a percent for the Z coordinate throws a TypeError assert_throws_js: function "() => new CSSTranslate(CSS.px(0), CSS.px(0), CSS.percent(0))" threw object "ReferenceError: Can't find variable: CSSTranslate" ("ReferenceError") expected instance of function "function TypeError() {
9
    [native code]
10
}" ("TypeError")
11
FAIL Updating CSSTranslate.x to a CSSUnitValue with type other than length or percent throws a TypeError Can't find variable: CSSTranslate
12
FAIL Updating CSSTranslate.x to a CSSMathValue that doesn't match <length-percentage> throws a TypeError Can't find variable: CSSTranslate
13
FAIL Updating CSSTranslate.y to a CSSUnitValue with type other than length or percent throws a TypeError Can't find variable: CSSTranslate
14
FAIL Updating CSSTranslate.y to a CSSMathValue that doesn't match <length-percentage> throws a TypeError Can't find variable: CSSTranslate
15
FAIL Updating CSSTranslate.z to a CSSUnitValue with type other than length or percent throws a TypeError Can't find variable: CSSTranslate
16
FAIL Updating CSSTranslate.z to a CSSMathValue that doesn't match <length-percentage> throws a TypeError Can't find variable: CSSTranslate
17
FAIL Updating CSSTranslate.z to a percent throws a TypeError Can't find variable: CSSTranslate
18
FAIL CSSTranslate can be constructed from two length or percent coordinates Can't find variable: CSSTranslate
19
FAIL CSSTranslate can be constructed from three length or percent coordinates Can't find variable: CSSTranslate
20
FAIL CSSTranslate can be constructed from CSSMathValues Can't find variable: CSSTranslate
21
FAIL CSSTranslate.x can be updated to a length Can't find variable: CSSTranslate
22
FAIL CSSTranslate.x can be updated to a percent Can't find variable: CSSTranslate
23
FAIL CSSTranslate.x can be updated to a CSSMathValue Can't find variable: CSSTranslate
24
FAIL CSSTranslate.y can be updated to a length Can't find variable: CSSTranslate
25
FAIL CSSTranslate.y can be updated to a percent Can't find variable: CSSTranslate
26
FAIL CSSTranslate.y can be updated to a CSSMathValue Can't find variable: CSSTranslate
27
FAIL CSSTranslate.z can be updated to a length Can't find variable: CSSTranslate
28
FAIL CSSTranslate.z can be updated to a CSSMathValue Can't find variable: CSSTranslate
29
FAIL Modifying CSSTranslate.is2D can be updated to true or false Can't find variable: CSSTranslate
5
30
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/add-two-types.tentative-expected.txt -9 / +7 lines
Lines 1-11 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/add-two-types.tentative-expected.txt_sec1
1
1
2
FAIL Adding two types with different non-null percent hints throws TypeError assert_throws_js: function "() => new CSSMathSum(a, b)" threw object "ReferenceError: Can't find variable: CSSMathSum" ("ReferenceError") expected instance of function "function TypeError() {
2
FAIL Adding two types with different non-null percent hints throws TypeError assert_throws_js: function "() => new CSSMathSum(a, b)" did not throw
3
    [native code]
3
FAIL Adding two types with the same nonzero values returns same type assert_equals: length expected 1 but got 0
4
}" ("TypeError")
4
FAIL Adding two types with empty maps with returns empty map assert_equals: length expected (undefined) undefined but got (number) 0
5
FAIL Adding two types with the same nonzero values returns same type Can't find variable: CSSMathSum
5
FAIL Adding a type with percent returns type with percent hint assert_equals: length expected 1 but got 0
6
FAIL Adding two types with empty maps with returns empty map Can't find variable: CSSMathSum
6
FAIL Adding a type with percent 2 returns type with percent hint throws TypeError assert_throws_js: function "() => new CSSMathSum(a, b)" did not throw
7
FAIL Adding a type with percent returns type with percent hint Can't find variable: CSSMathSum
7
FAIL Adding a type with a percent hint returns a type with the percent hint assert_equals: length expected 1 but got 0
8
FAIL Adding a type with percent 2 returns type with percent hint throws TypeError Can't find variable: CSSMathProduct
8
FAIL Adding two types with the same percent hint returns a type with the percent hint assert_equals: length expected 1 but got 0
9
FAIL Adding a type with a percent hint returns a type with the percent hint Can't find variable: CSSMathSum
10
FAIL Adding two types with the same percent hint returns a type with the percent hint Can't find variable: CSSMathSum
11
9
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/arithmetic.tentative-expected.txt -3 / +63 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/arithmetic.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
PASS Calling CSSUnitValue.add with no arguments returns itself
3
PASS Calling CSSMathValue.add with no arguments returns itself
4
FAIL Calling CSSNumericValue.add with a single CSSNumericValue returns correct type assert_equals: expected "CSSMathSum" but got "CSSUnitValue"
5
PASS Calling CSSMathValue.add with a single CSSNumericValue returns correct type
6
FAIL Calling CSSNumericValue.add with more than one number CSSNumericValues returns correct type assert_equals: expected "CSSMathSum" but got "CSSUnitValue"
7
PASS Calling CSSNumericValue.add can take numberish values
8
FAIL Calling CSSMathSum.add with number CSSUnitValues simplifies to a CSSUnitValue assert_equals: expected "CSSUnitValue" but got "CSSMathSum"
9
PASS Calling CSSNumericValue.add with incompatible types throws TypeError
10
PASS Calling CSSUnitValue.sub with no arguments returns itself
11
PASS Calling CSSMathValue.sub with no arguments returns itself
12
FAIL Calling CSSNumericValue.sub with a single CSSNumericValue returns correct type assert_equals: expected "CSSMathSum" but got "CSSUnitValue"
13
PASS Calling CSSMathValue.sub with a single CSSNumericValue returns correct type
14
FAIL Calling CSSNumericValue.sub with more than one number CSSNumericValues returns correct type assert_equals: expected "CSSMathSum" but got "CSSUnitValue"
15
PASS Calling CSSNumericValue.sub can take numberish values
16
FAIL Calling CSSMathSum.sub with number CSSUnitValues simplifies to a CSSUnitValue assert_equals: expected "CSSUnitValue" but got "CSSMathSum"
17
PASS Calling CSSNumericValue.sub with incompatible types throws TypeError
18
PASS Calling CSSUnitValue.mul with no arguments returns itself
19
PASS Calling CSSMathValue.mul with no arguments returns itself
20
FAIL Calling CSSNumericValue.mul with a single CSSNumericValue returns correct type assert_equals: expected "CSSMathProduct" but got "CSSUnitValue"
21
PASS Calling CSSMathValue.mul with a single CSSNumericValue returns correct type
22
FAIL Calling CSSNumericValue.mul with more than one number CSSNumericValues returns correct type assert_equals: expected "CSSMathProduct" but got "CSSUnitValue"
23
PASS Calling CSSNumericValue.mul can take numberish values
24
FAIL Calling CSSMathProduct.mul with number CSSUnitValues simplifies to a CSSUnitValue assert_equals: expected "CSSUnitValue" but got "CSSMathProduct"
25
PASS Calling CSSNumericValue.mul with incompatible types throws TypeError
26
PASS Calling CSSUnitValue.div with no arguments returns itself
27
PASS Calling CSSMathValue.div with no arguments returns itself
28
FAIL Calling CSSNumericValue.div with a single CSSNumericValue returns correct type assert_equals: expected "CSSMathProduct" but got "CSSUnitValue"
29
PASS Calling CSSMathValue.div with a single CSSNumericValue returns correct type
30
FAIL Calling CSSNumericValue.div with more than one number CSSNumericValues returns correct type assert_equals: expected "CSSMathProduct" but got "CSSUnitValue"
31
PASS Calling CSSNumericValue.div can take numberish values
32
FAIL Calling CSSMathProduct.div with number CSSUnitValues simplifies to a CSSUnitValue assert_equals: expected "CSSUnitValue" but got "CSSMathProduct"
33
PASS Calling CSSNumericValue.div with incompatible types throws TypeError
34
PASS Calling CSSUnitValue.min with no arguments returns itself
35
PASS Calling CSSMathValue.min with no arguments returns itself
36
FAIL Calling CSSNumericValue.min with a single CSSNumericValue returns correct type assert_equals: expected "CSSMathMin" but got "CSSUnitValue"
37
PASS Calling CSSMathValue.min with a single CSSNumericValue returns correct type
38
FAIL Calling CSSNumericValue.min with more than one number CSSNumericValues returns correct type assert_equals: expected "CSSMathMin" but got "CSSUnitValue"
39
PASS Calling CSSNumericValue.min can take numberish values
40
FAIL Calling CSSMathMin.min with number CSSUnitValues simplifies to a CSSUnitValue assert_equals: expected "CSSUnitValue" but got "CSSMathMin"
41
PASS Calling CSSNumericValue.min with incompatible types throws TypeError
42
PASS Calling CSSUnitValue.max with no arguments returns itself
43
PASS Calling CSSMathValue.max with no arguments returns itself
44
FAIL Calling CSSNumericValue.max with a single CSSNumericValue returns correct type assert_equals: expected "CSSMathMax" but got "CSSUnitValue"
45
PASS Calling CSSMathValue.max with a single CSSNumericValue returns correct type
46
FAIL Calling CSSNumericValue.max with more than one number CSSNumericValues returns correct type assert_equals: expected "CSSMathMax" but got "CSSUnitValue"
47
PASS Calling CSSNumericValue.max can take numberish values
48
FAIL Calling CSSMathMax.max with number CSSUnitValues simplifies to a CSSUnitValue assert_equals: expected "CSSUnitValue" but got "CSSMathMax"
49
PASS Calling CSSNumericValue.max with incompatible types throws TypeError
50
FAIL Calling CSSUnitValue.add with CSSUnitValues with same unit simplifies to a CSSUnitValue assert_equals: expected 17 but got 10
51
FAIL Calling CSSUnitValue.sub with CSSUnitValues with same unit simplifies to a CSSUnitValue assert_equals: expected 3 but got 10
52
FAIL Calling CSSUnitValue.mul with all numbers simplifies to a CSSUnitValue assert_equals: expected 100 but got 10
53
FAIL Calling CSSUnitValue.mul with only one non-number simplifies to a CSSUnitValue assert_equals: expected 100 but got 10
54
FAIL Calling CSSUnitValue.mul with more than one non-number does not simplify to a CSSUnitValue assert_equals: expected "CSSMathProduct" but got "CSSUnitValue"
55
FAIL Calling CSSUnitValue.div with all numbers simplifies to a CSSUnitValue assert_equals: expected 1 but got 10
56
FAIL Calling CSSUnitValue.div on a non-number value simplifies to a CSSUnitValue assert_equals: expected 1 but got 10
57
FAIL Calling CSSUnitValue.div with a non-number value in the arguments does not simplify to a CSSUnitValue assert_equals: expected "CSSMathProduct" but got "CSSUnitValue"
58
FAIL Calling CSSUnitValue.min with CSSUnitValues with same unit simplifies to a CSSUnitValue assert_equals: expected 2 but got 10
59
PASS Calling CSSUnitValue.max with CSSUnitValues with same unit simplifies to a CSSUnitValue
60
FAIL Calling CSSNumericValue.sub negates all argument values assert_equals: expected "CSSMathSum" but got "CSSUnitValue"
61
FAIL Calling CSSNumericValue.div inverts all argument values assert_equals: expected "CSSMathProduct" but got "CSSUnitValue"
62
FAIL Can not divide with CSSUnitValue which has zero value and number type assert_throws_js: function "() => CSS.number(2).div(CSS.number(0))" did not throw
63
FAIL CSSNumericValue.add should throw TypeError when the types are different. assert_throws_js: function "() => CSS.number(3).add(CSS.px(10) ,CSS.number(0))" did not throw
64
FAIL CSSNumericValue.sub should throw TypeError when the types are different. assert_throws_js: function "() => CSS.number(3).sub(CSS.px(10) ,CSS.number(0))" did not throw
5
65
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/create-a-type.tentative-expected.txt -8 / +8 lines
Lines 1-10 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/create-a-type.tentative-expected.txt_sec1
1
1
2
FAIL Creating a type from "number" returns {} value.type is not a function. (In 'value.type()', 'value.type' is undefined)
2
FAIL Creating a type from "number" returns {} assert_equals: length expected (undefined) undefined but got (number) 0
3
FAIL Creating a type from "percent" returns { percent: 1 } value.type is not a function. (In 'value.type()', 'value.type' is undefined)
3
FAIL Creating a type from "percent" returns { percent: 1 } assert_equals: length expected (undefined) undefined but got (number) 0
4
FAIL Creating a type from <length> returns { length: 1 } value.type is not a function. (In 'value.type()', 'value.type' is undefined)
4
FAIL Creating a type from <length> returns { length: 1 } assert_equals: length expected 1 but got 0
5
FAIL Creating a type from <angle> returns { angle: 1 } value.type is not a function. (In 'value.type()', 'value.type' is undefined)
5
FAIL Creating a type from <angle> returns { angle: 1 } assert_equals: length expected (undefined) undefined but got (number) 0
6
FAIL Creating a type from <time> returns { time: 1 } value.type is not a function. (In 'value.type()', 'value.type' is undefined)
6
FAIL Creating a type from <time> returns { time: 1 } assert_equals: length expected (undefined) undefined but got (number) 0
7
FAIL Creating a type from <frequency> returns { frequency: 1 } value.type is not a function. (In 'value.type()', 'value.type' is undefined)
7
FAIL Creating a type from <frequency> returns { frequency: 1 } assert_equals: length expected (undefined) undefined but got (number) 0
8
FAIL Creating a type from <resolution> returns { resolution: 1 } value.type is not a function. (In 'value.type()', 'value.type' is undefined)
8
FAIL Creating a type from <resolution> returns { resolution: 1 } assert_equals: length expected (undefined) undefined but got (number) 0
9
FAIL Creating a type from <flex> returns { flex: 1 } value.type is not a function. (In 'value.type()', 'value.type' is undefined)
9
FAIL Creating a type from <flex> returns { flex: 1 } assert_equals: length expected (undefined) undefined but got (number) 0
10
10
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathInvert-type-expected.txt -3 / +3 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathInvert-type-expected.txt_sec1
1
1
2
FAIL Inverting a type with empty map returns the empty map Can't find variable: CSSMathInvert
2
FAIL Inverting a type with empty map returns the empty map assert_equals: length expected (undefined) undefined but got (number) 0
3
FAIL Inverting a type negates all its exponents Can't find variable: CSSMathProduct
3
FAIL Inverting a type negates all its exponents assert_equals: length expected -1 but got 0
4
FAIL Inverting an inverted type returns the original type Can't find variable: CSSMathInvert
4
FAIL Inverting an inverted type returns the original type assert_equals: length expected 1 but got 0
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathNegate-type-expected.txt -2 / +2 lines
Lines 1-4 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathNegate-type-expected.txt_sec1
1
1
2
FAIL Negating a type with empty map returns the empty map Can't find variable: CSSMathNegate
2
FAIL Negating a type with empty map returns the empty map assert_equals: length expected (undefined) undefined but got (number) 0
3
FAIL Negating a type returns the same type Can't find variable: CSSMathNegate
3
FAIL Negating a type returns the same type assert_equals: length expected 1 but got 0
4
4
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathValue.tentative-expected.txt -3 / +20 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssMathValue.tentative-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
1
2
FAIL Constructing a CSSMathSum with no arguments throws a SyntaxError assert_throws_dom: function "() => new subclass()" did not throw
3
PASS CSSMathSum can be constructed from a single number CSSUnitValue
4
PASS CSSMathSum can be constructed from more than one number CSSUnitValue
5
PASS CSSMathSum.operator is readonly
6
FAIL Constructing a CSSMathProduct with no arguments throws a SyntaxError assert_throws_dom: function "() => new subclass()" did not throw
7
PASS CSSMathProduct can be constructed from a single number CSSUnitValue
8
PASS CSSMathProduct can be constructed from more than one number CSSUnitValue
9
PASS CSSMathProduct.operator is readonly
10
FAIL Constructing a CSSMathMin with no arguments throws a SyntaxError assert_throws_dom: function "() => new subclass()" did not throw
11
PASS CSSMathMin can be constructed from a single number CSSUnitValue
12
PASS CSSMathMin can be constructed from more than one number CSSUnitValue
13
PASS CSSMathMin.operator is readonly
14
FAIL Constructing a CSSMathMax with no arguments throws a SyntaxError assert_throws_dom: function "() => new subclass()" did not throw
15
PASS CSSMathMax can be constructed from a single number CSSUnitValue
16
PASS CSSMathMax can be constructed from more than one number CSSUnitValue
17
PASS CSSMathMax.operator is readonly
18
PASS CSSMathNegate can be constructed from a single numberish value
19
PASS CSSMathNegate.operator is readonly
20
PASS CSSMathInvert can be constructed from a single numberish value
21
PASS CSSMathInvert.operator is readonly
5
22
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssnumericvalue-multiply-two-types.tentative-expected.txt -7 / +7 lines
Lines 1-9 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/cssnumericvalue-multiply-two-types.tentative-expected.txt_sec1
1
1
2
FAIL Multiplying two types with different non-null percent hints throws TypeError Can't find variable: CSSMathSum
2
FAIL Multiplying two types with different non-null percent hints throws TypeError assert_throws_js: function "() => new CSSMathProduct(a, b)" did not throw
3
FAIL Multiplying two types with same base types adds exponents Can't find variable: CSSMathProduct
3
FAIL Multiplying two types with same base types adds exponents assert_equals: length expected 2 but got 0
4
FAIL Multiplying two types with different base types adds exponents Can't find variable: CSSMathProduct
4
FAIL Multiplying two types with different base types adds exponents assert_equals: length expected 1 but got 0
5
FAIL Multiplying two types respects the sign of the exponents Can't find variable: CSSMathInvert
5
FAIL Multiplying two types respects the sign of the exponents assert_equals: length expected 1 but got 0
6
FAIL Multiplying a type with no exponents is a no-op Can't find variable: CSSMathProduct
6
FAIL Multiplying a type with no exponents is a no-op assert_equals: length expected 1 but got 0
7
FAIL Multiplying a type with percent hint applies the percent hint Can't find variable: CSSMathSum
7
FAIL Multiplying a type with percent hint applies the percent hint assert_equals: length expected 2 but got 0
8
FAIL Multiplying two types with same percent hint applies the percent hint Can't find variable: CSSMathSum
8
FAIL Multiplying two types with same percent hint applies the percent hint assert_equals: length expected 2 but got 0
9
9
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/equals.tentative-expected.txt -9 / +9 lines
Lines 1-11 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/equals.tentative-expected.txt_sec1
1
1
2
FAIL Two CSSUnitValues with same value and unit are equal CSS.px(1).equals is not a function. (In 'CSS.px(1).equals(CSS.px(1))', 'CSS.px(1).equals' is undefined)
2
FAIL Two CSSUnitValues with same value and unit are equal assert_true: expected true got false
3
FAIL Two CSSUnitValues with different values are not equal CSS.px(0).equals is not a function. (In 'CSS.px(0).equals(CSS.px(1))', 'CSS.px(0).equals' is undefined)
3
PASS Two CSSUnitValues with different values are not equal
4
FAIL Two CSSUnitValues with different units are not equal CSS.px(1).equals is not a function. (In 'CSS.px(1).equals(CSS.number(1))', 'CSS.px(1).equals' is undefined)
4
PASS Two CSSUnitValues with different units are not equal
5
FAIL Two CSSMathValues with different types are not equal Can't find variable: CSSMathSum
5
PASS Two CSSMathValues with different types are not equal
6
FAIL Two CSSMathValues with different number of values are not equal Can't find variable: CSSMathSum
6
PASS Two CSSMathValues with different number of values are not equal
7
FAIL Two CSSMathValues with different values are not equal Can't find variable: CSSMathSum
7
PASS Two CSSMathValues with different values are not equal
8
FAIL Two CSSMathValues with same structure are equal Can't find variable: CSSMathSum
8
FAIL Two CSSMathValues with same structure are equal assert_true: expected true got false
9
FAIL Multiple CSSMathValues with same structure are equal Can't find variable: CSSMathSum
9
FAIL Multiple CSSMathValues with same structure are equal assert_true: expected true got false
10
FAIL Multiple CSSMathValues with one different are not equal Can't find variable: CSSMathSum
10
PASS Multiple CSSMathValues with one different are not equal
11
11
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/parse.tentative-expected.txt -8 / +8 lines
Lines 1-10 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/parse.tentative-expected.txt_sec1
1
1
2
FAIL Parsing an invalid string throws SyntaxError assert_throws_dom: function "() => CSSNumericValue.parse('%#(')" threw object "TypeError: Not enough arguments" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
2
FAIL Parsing an invalid string throws SyntaxError assert_throws_dom: function "() => CSSNumericValue.parse('%#(')" threw object "TypeError: Not implemented Error" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
3
FAIL Parsing a string with a non numeric token throws SyntaxError assert_throws_dom: function "() => CSSNumericValue.parse('auto')" threw object "TypeError: Not enough arguments" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
3
FAIL Parsing a string with a non numeric token throws SyntaxError assert_throws_dom: function "() => CSSNumericValue.parse('auto')" threw object "TypeError: Not implemented Error" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
4
FAIL Parsing a string with left over numeric tokens throws SyntaxError assert_throws_dom: function "() => CSSNumericValue.parse('1 2')" threw object "TypeError: Not enough arguments" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
4
FAIL Parsing a string with left over numeric tokens throws SyntaxError assert_throws_dom: function "() => CSSNumericValue.parse('1 2')" threw object "TypeError: Not implemented Error" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
5
FAIL Parsing a calc with incompatible units throws a SyntaxError assert_throws_dom: function "() => CSSNumericValue.parse('calc(calc(1px * 2s) + 3%)')" threw object "TypeError: Not enough arguments" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
5
FAIL Parsing a calc with incompatible units throws a SyntaxError assert_throws_dom: function "() => CSSNumericValue.parse('calc(calc(1px * 2s) + 3%)')" threw object "TypeError: Not implemented Error" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
6
FAIL Parsing ignores surrounding spaces Not enough arguments
6
FAIL Parsing ignores surrounding spaces Not implemented Error
7
FAIL Parsing min() is successful Can't find variable: CSSMathMin
7
FAIL Parsing min() is successful Not implemented Error
8
FAIL Parsing max() is successful Can't find variable: CSSMathMax
8
FAIL Parsing max() is successful Not implemented Error
9
FAIL Parsing clamp() is successful Can't find variable: CSSMathMax
9
FAIL Parsing clamp() is successful Not implemented Error
10
10
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/to.tentative-expected.txt -23 / +15 lines
Lines 1-25 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/to.tentative-expected.txt_sec1
1
1
2
FAIL Converting a CSSUnitValue to an invalid unit throws SyntaxError assert_throws_dom: function "() => CSS.px(1).to('lemon')" threw object "TypeError: CSS.px(1).to is not a function. (In 'CSS.px(1).to('lemon')', 'CSS.px(1).to' is undefined)" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
2
FAIL Converting a CSSUnitValue to an invalid unit throws SyntaxError assert_throws_dom: function "() => CSS.px(1).to('lemon')" did not throw
3
FAIL Converting a CSSNumericValue with invalid sum value throws TypeError assert_throws_js: function "() => new CSSMathMax(1, CSS.px(1)).to('number')" threw object "ReferenceError: Can't find variable: CSSMathMax" ("ReferenceError") expected instance of function "function TypeError() {
3
FAIL Converting a CSSNumericValue with invalid sum value throws TypeError assert_throws_js: function "() => new CSSMathMax(1, CSS.px(1)).to('number')" did not throw
4
    [native code]
4
FAIL Converting a CSSNumericValue with sum value containing more than one value throws TypeError assert_throws_js: function "() => new CSSMathProduct(CSS.px(1), CSS.s(1)).to('number')" did not throw
5
}" ("TypeError")
5
FAIL Converting a CSSUnitValue to an incompatible unit throws TypeError assert_throws_js: function "() => CSS.px(1).to('number')" did not throw
6
FAIL Converting a CSSNumericValue with sum value containing more than one value throws TypeError assert_throws_js: function "() => new CSSMathProduct(CSS.px(1), CSS.s(1)).to('number')" threw object "ReferenceError: Can't find variable: CSSMathProduct" ("ReferenceError") expected instance of function "function TypeError() {
6
FAIL Converting a CSSUnitValue to its own unit returns itself assert_equals: expected "percent" but got "number"
7
    [native code]
7
FAIL Converting a CSSUnitValue to its canonical unit returns correct value assert_approx_equals: expected 37.7952755 +/- 0.000001 but got 1
8
}" ("TypeError")
8
FAIL Converting a CSSMathSum to a single unit adds the values assert_approx_equals: expected 2 +/- 0.000001 but got 1
9
PASS Converting a CSSUnitValue to an incompatible unit throws TypeError
9
FAIL Converting a CSSMathProduct to a single unit multiplies the values assert_approx_equals: expected 6 +/- 0.000001 but got 1
10
FAIL Converting a CSSUnitValue to its own unit returns itself CSS[unit](1).to is not a function. (In 'CSS[unit](1).to(unit)', 'CSS[unit](1).to' is undefined)
10
FAIL Converting a CSSMathMin to a single unit finds the min value assert_equals: expected "mm" but got "number"
11
FAIL Converting a CSSUnitValue to its canonical unit returns correct value CSS.cm(1).to is not a function. (In 'CSS.cm(1).to('px')', 'CSS.cm(1).to' is undefined)
11
FAIL Converting a CSSMathMin to a single unit with different units throws a TypeError assert_throws_js: function "() => new CSSMathMin(CSS.px(2), CSS.s(3)).to('px')" did not throw
12
FAIL Converting a CSSMathSum to a single unit adds the values Can't find variable: CSSMathSum
12
FAIL Converting a CSSMathMax to a single unit finds the max value assert_approx_equals: expected 10 +/- 0.000001 but got 1
13
FAIL Converting a CSSMathProduct to a single unit multiplies the values Can't find variable: CSSMathProduct
13
FAIL Converting a CSSMathMax to a single unit with different units throws a TypeError assert_throws_js: function "() => new CSSMathMax(CSS.px(2), CSS.s(3)).to('px')" did not throw
14
FAIL Converting a CSSMathMin to a single unit finds the min value Can't find variable: CSSMathMin
14
FAIL Converting a CSSMathNegate to a single unit negates its value assert_approx_equals: expected -1 +/- 0.000001 but got 1
15
FAIL Converting a CSSMathMin to a single unit with different units throws a TypeError assert_throws_js: function "() => new CSSMathMin(CSS.px(2), CSS.s(3)).to('px')" threw object "ReferenceError: Can't find variable: CSSMathMin" ("ReferenceError") expected instance of function "function TypeError() {
15
FAIL Converting a CSSMathInvert to a single unit inverts its value and units assert_approx_equals: expected 2 +/- 0.000001 but got 1
16
    [native code]
16
FAIL Converting a complex expression to a single unit assert_approx_equals: expected 3500 +/- 0.000001 but got 1
17
}" ("TypeError")
18
FAIL Converting a CSSMathMax to a single unit finds the max value Can't find variable: CSSMathMax
19
FAIL Converting a CSSMathMax to a single unit with different units throws a TypeError assert_throws_js: function "() => new CSSMathMax(CSS.px(2), CSS.s(3)).to('px')" threw object "ReferenceError: Can't find variable: CSSMathMax" ("ReferenceError") expected instance of function "function TypeError() {
20
    [native code]
21
}" ("TypeError")
22
FAIL Converting a CSSMathNegate to a single unit negates its value Can't find variable: CSSMathNegate
23
FAIL Converting a CSSMathInvert to a single unit inverts its value and units Can't find variable: CSSMathProduct
24
FAIL Converting a complex expression to a single unit Can't find variable: CSSMathSum
25
17
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/toSum.tentative-expected.txt -17 / +11 lines
Lines 1-19 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/stylevalue-subclasses/numeric-objects/toSum.tentative-expected.txt_sec1
1
1
2
FAIL Converting a CSSNumericValue to a sum with invalid units throws SyntaxError assert_throws_dom: function "() => CSS.px(1).toSum('px', 'lemon')" threw object "TypeError: CSS.px(1).toSum is not a function. (In 'CSS.px(1).toSum('px', 'lemon')', 'CSS.px(1).toSum' is undefined)" that is not a DOMException SyntaxError: property "code" is equal to undefined, expected 12
2
FAIL Converting a CSSNumericValue to a sum with invalid units throws SyntaxError assert_throws_dom: function "() => CSS.px(1).toSum('px', 'lemon')" did not throw
3
FAIL Converting a CSSNumericValue with an invalid sum value to a sum throws TypeError assert_throws_js: function "() => new CSSMathMax(1, CSS.px(1)).toSum('number')" threw object "ReferenceError: Can't find variable: CSSMathMax" ("ReferenceError") expected instance of function "function TypeError() {
3
FAIL Converting a CSSNumericValue with an invalid sum value to a sum throws TypeError assert_throws_js: function "() => new CSSMathMax(1, CSS.px(1)).toSum('number')" did not throw
4
    [native code]
4
FAIL Converting a CSSNumericValue with compound units to a sum throws TypeError assert_throws_js: function "() => new CSSMathProduct(CSS.px(1), CSS.px(1)).to('px')" did not throw
5
}" ("TypeError")
5
FAIL Converting a CSSNumericValue to a sum with an incompatible unit throws TypeError assert_throws_js: function "() => CSS.px(1).toSum('number')" did not throw
6
FAIL Converting a CSSNumericValue with compound units to a sum throws TypeError assert_throws_js: function "() => new CSSMathProduct(CSS.px(1), CSS.px(1)).to('px')" threw object "ReferenceError: Can't find variable: CSSMathProduct" ("ReferenceError") expected instance of function "function TypeError() {
6
FAIL Converting a CSSNumericValue to a sum with units that are not addable throws TypeError assert_throws_js: function "() => CSS.px(1).toSum('px', 's')" did not throw
7
    [native code]
7
FAIL Converting a CSSNumericValue with leftover units to a sum throws TypeError assert_throws_js: function "() => new CSSMathSum(CSS.px(1), CSS.em(1)).toSum('px')" did not throw
8
}" ("TypeError")
8
FAIL Converting CSSNumericValue to a sum with its own unit returns itself assert_equals: expected "px" but got "number"
9
PASS Converting a CSSNumericValue to a sum with an incompatible unit throws TypeError
9
FAIL Converting CSSNumericValue to a sum with no arguments returns all the units in sorted order assert_equals: expected 4 but got 1
10
PASS Converting a CSSNumericValue to a sum with units that are not addable throws TypeError
10
FAIL Converting CSSNumericValue to a sum with a relative unit converts correctly assert_approx_equals: expected 20 +/- 0.000001 but got 1
11
FAIL Converting a CSSNumericValue with leftover units to a sum throws TypeError assert_throws_js: function "() => new CSSMathSum(CSS.px(1), CSS.em(1)).toSum('px')" threw object "ReferenceError: Can't find variable: CSSMathSum" ("ReferenceError") expected instance of function "function TypeError() {
11
FAIL Converting CSSNumericValue to a sum containing extra units returns zero for those units assert_equals: expected 3 but got 1
12
    [native code]
12
FAIL CSSNumericValue.toSum converts greedily assert_equals: expected 2 but got 1
13
}" ("TypeError")
14
FAIL Converting CSSNumericValue to a sum with its own unit returns itself CSS.number(1).toSum is not a function. (In 'CSS.number(1).toSum('number')', 'CSS.number(1).toSum' is undefined)
15
FAIL Converting CSSNumericValue to a sum with no arguments returns all the units in sorted order Can't find variable: CSSMathSum
16
FAIL Converting CSSNumericValue to a sum with a relative unit converts correctly CSS.cm(2).toSum is not a function. (In 'CSS.cm(2).toSum('mm')', 'CSS.cm(2).toSum' is undefined)
17
FAIL Converting CSSNumericValue to a sum containing extra units returns zero for those units CSS.px(1).toSum is not a function. (In 'CSS.px(1).toSum('em', 'px', 'vw')', 'CSS.px(1).toSum' is undefined)
18
FAIL CSSNumericValue.toSum converts greedily Can't find variable: CSSMathSum
19
13
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/accent-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/accent-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/alignment-baseline-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/alignment-baseline-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/all-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/all-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-delay-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-delay-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-direction-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-direction-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-duration-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-duration-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-fill-mode-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-fill-mode-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-iteration-count-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-iteration-count-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-name-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-name-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-play-state-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-play-state-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-timing-function-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/animation-timing-function-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/backdrop-filter-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/backdrop-filter-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/backface-visibility-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/backface-visibility-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-attachment-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-attachment-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-blend-mode-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-blend-mode-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-clip-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-clip-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-image-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-image-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-origin-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-origin-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-position-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-position-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-repeat-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-repeat-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-size-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/background-size-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/baseline-shift-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/baseline-shift-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/block-size-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/block-size-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-collapse-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-collapse-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-outset-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-outset-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-repeat-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-repeat-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-slice-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-slice-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-source-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-source-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-width-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-image-width-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-radius-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-radius-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-style-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-style-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-width-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/border-width-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/bottom-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/bottom-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/box-shadow-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/box-shadow-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/box-sizing-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/box-sizing-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/break-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/break-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/caption-side-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/caption-side-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/caret-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/caret-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/center-coordinate-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/center-coordinate-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clear-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clear-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-path-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-path-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-rule-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/clip-rule-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/color-interpolation-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/color-interpolation-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-count-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-count-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-style-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-style-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-width-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-rule-width-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-span-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-span-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-width-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/column-width-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/contain-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/contain-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/coordinate-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/coordinate-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-increment-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-increment-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-reset-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-reset-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-set-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/counter-set-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/cursor-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/cursor-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/d-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/d-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/direction-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/direction-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/display-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/display-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/dominant-baseline-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/dominant-baseline-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/empty-cells-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/empty-cells-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-opacity-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-opacity-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-rule-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/fill-rule-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/filter-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/filter-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-basis-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-basis-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-direction-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-direction-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-flow-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-flow-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-grow-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-grow-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-shrink-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-shrink-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-wrap-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flex-wrap-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/float-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/float-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flood-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flood-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flood-opacity-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/flood-opacity-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-family-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-family-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-feature-settings-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-feature-settings-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-kerning-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-kerning-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-language-override-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-language-override-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-optical-sizing-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-optical-sizing-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-palette-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-palette-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-presentation-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-presentation-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-size-adjust-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-size-adjust-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-size-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-size-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-stretch-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-stretch-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-style-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-style-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-synthesis-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-synthesis-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-alternates-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-alternates-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-caps-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-caps-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-east-asian-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-east-asian-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-emoji-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-emoji-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-ligatures-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-ligatures-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-numeric-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variant-numeric-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variation-settings-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-variation-settings-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-weight-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/font-weight-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/gap-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/gap-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-area-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-area-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-auto-columns-rows-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-auto-columns-rows-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-auto-flow-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-auto-flow-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-gap-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-gap-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-start-end-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-start-end-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-areas-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-areas-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-columns-rows-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-columns-rows-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/grid-template-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/height-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/height-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/hyphens-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/hyphens-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/image-rendering-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/image-rendering-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/inline-size-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/inline-size-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/isolation-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/isolation-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/left-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/left-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/letter-spacing-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/letter-spacing-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/lighting-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/lighting-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-break-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-break-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-height-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-height-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-height-step-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/line-height-step-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-image-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-image-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-position-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-position-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-type-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/list-style-type-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/logical-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/logical-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/margin-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/margin-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/marker-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/marker-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-image-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-image-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-type-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mask-type-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mix-blend-mode-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/mix-blend-mode-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/object-fit-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/object-fit-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/object-position-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/object-position-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-anchor-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-anchor-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-distance-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-distance-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-path-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-path-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-position-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-position-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-rotate-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/offset-rotate-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/opacity-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/opacity-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/order-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/order-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/orphans-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/orphans-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-offset-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-offset-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-style-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-style-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-width-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/outline-width-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-anchor-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-anchor-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-wrap-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overflow-wrap-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overscroll-behavior-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/overscroll-behavior-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/padding-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/padding-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/page-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/page-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/paint-order-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/paint-order-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/perspective-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/perspective-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/perspective-origin-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/perspective-origin-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/pointer-events-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/pointer-events-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/position-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/position-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/quotes-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/quotes-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/radius-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/radius-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/resize-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/resize-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/right-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/right-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-behavior-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-behavior-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-margin-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-margin-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-padding-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-padding-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-align-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-align-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-stop-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-stop-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-type-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scroll-snap-type-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scrollbar-gutter-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scrollbar-gutter-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scrollbar-width-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/scrollbar-width-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-image-threshold-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-image-threshold-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-margin-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-margin-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-outside-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-outside-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-rendering-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/shape-rendering-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/speak-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/speak-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stop-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stop-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stop-opacity-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stop-opacity-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-dasharray-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-dasharray-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-dashoffset-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-dashoffset-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-linecap-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-linecap-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-linejoin-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-linejoin-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-miterlimit-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-miterlimit-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-opacity-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-opacity-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-width-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/stroke-width-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/tab-size-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/tab-size-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/table-layout-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/table-layout-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-align-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-align-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-align-last-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-align-last-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-anchor-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-anchor-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-combine-upright-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-combine-upright-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-line-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-line-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-skip-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-skip-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-skip-ink-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-skip-ink-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-style-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-style-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-thickness-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-decoration-thickness-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-emphasis-color-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-emphasis-color-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-indent-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-indent-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-justify-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-justify-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-orientation-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-orientation-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-overflow-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-overflow-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-rendering-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-rendering-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-shadow-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-shadow-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-size-adjust-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-size-adjust-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-transform-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-transform-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-underline-offset-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-underline-offset-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-underline-position-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/text-underline-position-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/top-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/top-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/touch-action-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/touch-action-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-box-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-box-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-style-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transform-style-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-delay-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-delay-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-duration-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-duration-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-expected.txt -2 / +2 lines
Lines 1-5 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
2
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
3
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
4
4
5
5
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-property-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-property-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-timing-function-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/transition-timing-function-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/unicode-bidi-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/unicode-bidi-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/user-select-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/user-select-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/vector-effect-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/vector-effect-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/vertical-align-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/vertical-align-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/visibility-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/visibility-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/white-space-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/white-space-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/widows-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/widows-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/width-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/width-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/will-change-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/will-change-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-break-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-break-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-spacing-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-spacing-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-wrap-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/word-wrap-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/writing-mode-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/writing-mode-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/z-index-expected.txt -2 / +2 lines
Lines 1-6 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/the-stylepropertymap/properties/z-index-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathSum
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSPositionValue
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
2
CONSOLE MESSAGE: ReferenceError: Cannot access uninitialized variable.
3
3
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSMathSum
4
Harness Error (FAIL), message = ReferenceError: Can't find variable: CSSPositionValue
5
5
6
6
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/width-by-max-px-em-expected.txt -1 / +1 lines
Lines 1-4 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/width-by-max-px-em-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathMax
1
CONSOLE MESSAGE: TypeError: target.attributeStyleMap.set is not a function. (In 'target.attributeStyleMap.set('width', width)', 'target.attributeStyleMap.set' is undefined)
2
layer at (0,0) size 800x600
2
layer at (0,0) size 800x600
3
  RenderView at (0,0) size 800x600
3
  RenderView at (0,0) size 800x600
4
layer at (0,0) size 800x158
4
layer at (0,0) size 800x158
- a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/width-by-min-px-em-expected.txt -1 / +1 lines
Lines 1-4 a/LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/width-by-min-px-em-expected.txt_sec1
1
CONSOLE MESSAGE: ReferenceError: Can't find variable: CSSMathMin
1
CONSOLE MESSAGE: TypeError: target.attributeStyleMap.set is not a function. (In 'target.attributeStyleMap.set('width', width)', 'target.attributeStyleMap.set' is undefined)
2
layer at (0,0) size 800x600
2
layer at (0,0) size 800x600
3
  RenderView at (0,0) size 800x600
3
  RenderView at (0,0) size 800x600
4
layer at (0,0) size 800x158
4
layer at (0,0) size 800x158

Return to Bug 230031