blob: 8e971d97359c98ad6ba71f0632d8676ebb12c410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
|
prefs: [dom.security.featurePolicy.experimental.enabled:true, dom.security.featurePolicy.header.enabled:true, dom.security.featurePolicy.webidl.enabled:true, dom.forms.inputmode:true, dom.forms.enterkeyhint:true, dom.forms.autocapitalize:true, html5.inert.enabled:true, dom.picture_source_dimension_attributes.enabled:true]
[idlharness.https.html?exclude=(Document|Window|HTML.*)]
[AudioTrack interface: existence and properties of interface prototype object]
expected: FAIL
[AudioTrack interface: attribute language]
expected: FAIL
[AudioTrackList interface: existence and properties of interface object]
expected: FAIL
[OffscreenCanvasRenderingContext2D interface: attribute filter]
expected: FAIL
[CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "imageSmoothingQuality" with the proper type]
expected: FAIL
[AudioTrack interface object length]
expected: FAIL
[SVGSVGElement interface: attribute onstorage]
expected: FAIL
[AudioTrackList interface object name]
expected: FAIL
[VideoTrack interface: attribute kind]
expected: FAIL
[CanvasRenderingContext2D interface: operation scrollPathIntoView()]
expected: FAIL
[AudioTrackList interface: operation getTrackById(DOMString)]
expected: FAIL
[CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "getContextAttributes()" with the proper type]
expected: FAIL
[TextMetrics interface: attribute ideographicBaseline]
expected: FAIL
[VideoTrackList interface object length]
expected: FAIL
[SVGSVGElement interface: attribute onbeforeprint]
expected: FAIL
[TextMetrics interface: attribute emHeightDescent]
expected: FAIL
[Location interface: window.location must have own property "ancestorOrigins"]
expected: FAIL
[OffscreenCanvasRenderingContext2D interface: attribute filter]
expected: FAIL
[SVGElement interface: attribute oncancel]
expected: FAIL
[VideoTrackList interface: existence and properties of interface object]
expected: FAIL
[External interface: existence and properties of interface prototype object's "constructor" property]
expected: FAIL
[CanvasRenderingContext2D interface: operation scrollPathIntoView(Path2D)]
expected: FAIL
[DOMStringList interface: calling item(unsigned long) on location.ancestorOrigins with too few arguments must throw TypeError]
expected: FAIL
[SVGSVGElement interface: attribute onoffline]
expected: FAIL
[VideoTrack interface: existence and properties of interface prototype object]
expected: FAIL
[Navigator interface: calling unregisterProtocolHandler(DOMString, USVString) on window.navigator with too few arguments must throw TypeError]
expected: FAIL
[AudioTrackList interface object length]
expected: FAIL
[External must be primary interface of window.external]
expected: FAIL
[VideoTrackList interface: operation getTrackById(DOMString)]
expected: FAIL
[BarProp interface: attribute visible]
expected: FAIL
[SVGSVGElement interface: attribute onpageshow]
expected: FAIL
[CanvasRenderingContext2D interface: calling scrollPathIntoView(Path2D) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError]
expected: FAIL
[VideoTrackList interface: existence and properties of interface prototype object's "constructor" property]
expected: FAIL
[CanvasRenderingContext2D interface: operation getContextAttributes()]
expected: FAIL
[VideoTrack interface: attribute label]
expected: FAIL
[VideoTrackList interface: attribute selectedIndex]
expected: FAIL
[External interface object name]
expected: FAIL
[OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingQuality]
expected: FAIL
[SVGSVGElement interface: attribute onunload]
expected: FAIL
[CanvasRenderingContext2D interface: attribute imageSmoothingQuality]
expected: FAIL
[DOMStringList interface: calling contains(DOMString) on location.ancestorOrigins with too few arguments must throw TypeError]
expected: FAIL
[SVGSVGElement interface: attribute onbeforeunload]
expected: FAIL
[VideoTrackList interface object name]
expected: FAIL
[SVGSVGElement interface: attribute onmessageerror]
expected: FAIL
[VideoTrack interface: attribute language]
expected: FAIL
[VideoTrackList interface: attribute onremovetrack]
expected: FAIL
[VideoTrack interface: existence and properties of interface prototype object's @@unscopables property]
expected: FAIL
[DOMStringList interface: location.ancestorOrigins must inherit property "contains(DOMString)" with the proper type]
expected: FAIL
[SVGSVGElement interface: attribute onmessage]
expected: FAIL
[VideoTrackList interface: attribute onchange]
expected: FAIL
[Stringification of location.ancestorOrigins]
expected: FAIL
[CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "scrollPathIntoView(Path2D)" with the proper type]
expected: FAIL
[DOMStringList interface: location.ancestorOrigins must inherit property "item(unsigned long)" with the proper type]
expected: FAIL
[AudioTrack interface: attribute id]
expected: FAIL
[SVGSVGElement interface: attribute onlanguagechange]
expected: FAIL
[SVGSVGElement interface: attribute onunhandledrejection]
expected: FAIL
[SVGSVGElement interface: attribute onrejectionhandled]
expected: FAIL
[Navigator interface: operation unregisterProtocolHandler(DOMString, USVString)]
expected: FAIL
[External interface: operation AddSearchProvider()]
expected: FAIL
[SVGSVGElement interface: attribute onhashchange]
expected: FAIL
[DOMStringList must be primary interface of location.ancestorOrigins]
expected: FAIL
[AudioTrackList interface: attribute onchange]
expected: FAIL
[AudioTrack interface object name]
expected: FAIL
[AudioTrack interface: attribute kind]
expected: FAIL
[TextMetrics interface: attribute hangingBaseline]
expected: FAIL
[VideoTrackList interface: existence and properties of interface prototype object]
expected: FAIL
[AudioTrackList interface: existence and properties of interface prototype object]
expected: FAIL
[External interface: operation IsSearchProviderInstalled()]
expected: FAIL
[TextMetrics interface: attribute fontBoundingBoxAscent]
expected: FAIL
[VideoTrackList interface: existence and properties of interface prototype object's @@unscopables property]
expected: FAIL
[TextMetrics interface: attribute alphabeticBaseline]
expected: FAIL
[VideoTrackList interface: attribute length]
expected: FAIL
[VideoTrack interface object length]
expected: FAIL
[AudioTrack interface: existence and properties of interface object]
expected: FAIL
[AudioTrackList interface: attribute onremovetrack]
expected: FAIL
[SVGSVGElement interface: attribute onpopstate]
expected: FAIL
[VideoTrack interface: existence and properties of interface object]
expected: FAIL
[DOMStringList interface: location.ancestorOrigins must inherit property "length" with the proper type]
expected: FAIL
[External interface: existence and properties of interface prototype object]
expected: FAIL
[SVGSVGElement interface: attribute onpagehide]
expected: FAIL
[VideoTrackList interface: attribute onaddtrack]
expected: FAIL
[External interface: existence and properties of interface object]
expected: FAIL
[TextMetrics interface: attribute fontBoundingBoxDescent]
expected: FAIL
[SVGSVGElement interface: attribute onafterprint]
expected: FAIL
[AudioTrack interface: attribute label]
expected: FAIL
[Navigator interface: window.navigator must inherit property "unregisterProtocolHandler(DOMString, USVString)" with the proper type]
expected: FAIL
[AudioTrackList interface: existence and properties of interface prototype object's "constructor" property]
expected: FAIL
[AudioTrack interface: existence and properties of interface prototype object's @@unscopables property]
expected: FAIL
[SVGSVGElement interface: attribute ononline]
expected: FAIL
[AudioTrackList interface: attribute onaddtrack]
expected: FAIL
[External interface object length]
expected: FAIL
[VideoTrack interface object name]
expected: FAIL
[VideoTrack interface: attribute selected]
expected: FAIL
[AudioTrackList interface: existence and properties of interface prototype object's @@unscopables property]
expected: FAIL
[AudioTrackList interface: attribute length]
expected: FAIL
[VideoTrack interface: existence and properties of interface prototype object's "constructor" property]
expected: FAIL
[VideoTrack interface: attribute id]
expected: FAIL
[AudioTrack interface: attribute enabled]
expected: FAIL
[CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "scrollPathIntoView()" with the proper type]
expected: FAIL
[AudioTrack interface: existence and properties of interface prototype object's "constructor" property]
expected: FAIL
[Location interface: stringifier]
expected: FAIL
[TextMetrics interface: attribute emHeightAscent]
expected: FAIL
[External interface: existence and properties of interface prototype object's @@unscopables property]
expected: FAIL
[FormDataEvent interface object length]
expected: FAIL
[CanvasRenderingContext2D interface: attribute fontStretch]
expected: FAIL
[CanvasRenderingContext2D interface: attribute fontVariantCaps]
expected: FAIL
[CanvasRenderingContext2D interface: attribute textRendering]
expected: FAIL
[CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "fontStretch" with the proper type]
expected: FAIL
[CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "fontVariantCaps" with the proper type]
expected: FAIL
[CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "textRendering" with the proper type]
expected: FAIL
[ImageData interface: attribute colorSpace]
expected: FAIL
[ImageData interface: new ImageData(10, 10) must inherit property "colorSpace" with the proper type]
expected: FAIL
[OffscreenCanvasRenderingContext2D interface: attribute fontStretch]
expected: FAIL
[OffscreenCanvasRenderingContext2D interface: attribute fontVariantCaps]
expected: FAIL
[OffscreenCanvasRenderingContext2D interface: attribute textRendering]
expected: FAIL
[CanvasRenderingContext2D interface: operation isContextLost()]
expected: FAIL
[CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "isContextLost()" with the proper type]
expected: FAIL
[OffscreenCanvasRenderingContext2D interface: operation isContextLost()]
expected: FAIL
[SVGElement interface: attribute oncontextlost]
expected: FAIL
[SVGElement interface: attribute oncontextrestored]
expected: FAIL
[SVGElement interface: attribute onbeforematch]
expected: FAIL
[UserActivation interface: existence and properties of interface object]
expected: FAIL
[UserActivation interface object length]
expected: FAIL
[UserActivation interface object name]
expected: FAIL
[UserActivation interface: existence and properties of interface prototype object]
expected: FAIL
[UserActivation interface: existence and properties of interface prototype object's "constructor" property]
expected: FAIL
[UserActivation interface: existence and properties of interface prototype object's @@unscopables property]
expected: FAIL
[UserActivation interface: attribute hasBeenActive]
expected: FAIL
[UserActivation interface: attribute isActive]
expected: FAIL
[Navigator interface: attribute userActivation]
expected: FAIL
[Navigator interface: window.navigator must inherit property "userActivation" with the proper type]
expected: FAIL
[ToggleEvent interface: existence and properties of interface object]
expected: FAIL
[ToggleEvent interface object length]
expected: FAIL
[ToggleEvent interface object name]
expected: FAIL
[ToggleEvent interface: existence and properties of interface prototype object]
expected: FAIL
[ToggleEvent interface: existence and properties of interface prototype object's "constructor" property]
expected: FAIL
[ToggleEvent interface: existence and properties of interface prototype object's @@unscopables property]
expected: FAIL
[ToggleEvent interface: attribute oldState]
expected: FAIL
[ToggleEvent interface: attribute newState]
expected: FAIL
[ToggleEvent must be primary interface of new ToggleEvent("beforetoggle")]
expected: FAIL
[Stringification of new ToggleEvent("beforetoggle")]
expected: FAIL
[ToggleEvent interface: new ToggleEvent("beforetoggle") must inherit property "oldState" with the proper type]
expected: FAIL
[ToggleEvent interface: new ToggleEvent("beforetoggle") must inherit property "newState" with the proper type]
expected: FAIL
[SVGElement interface: attribute onbeforetoggle]
expected: FAIL
[VisibilityStateEntry interface: attribute duration]
expected: FAIL
[VisibilityStateEntry interface: existence and properties of interface prototype object's "constructor" property]
expected: FAIL
[VisibilityStateEntry interface: existence and properties of interface prototype object]
expected: FAIL
[VisibilityStateEntry interface: existence and properties of interface object]
expected: FAIL
[VisibilityStateEntry interface: existence and properties of interface prototype object's @@unscopables property]
expected: FAIL
[VisibilityStateEntry interface: attribute entryType]
expected: FAIL
[VisibilityStateEntry interface object length]
expected: FAIL
[VisibilityStateEntry interface object name]
expected: FAIL
[VisibilityStateEntry interface: attribute name]
expected: FAIL
[VisibilityStateEntry interface: attribute startTime]
expected: FAIL
[idlharness.https.html?include=(Document|Window)]
[Document interface: new Document() must inherit property "oncancel" with the proper type]
expected: FAIL
[Document interface: attribute oncancel]
expected: FAIL
[Window interface: window must inherit property "oncancel" with the proper type]
expected: FAIL
[Document interface: documentWithHandlers must inherit property "oncancel" with the proper type]
expected: FAIL
[Document interface: iframe.contentDocument must inherit property "oncancel" with the proper type]
expected: FAIL
[Window interface: attribute oncancel]
expected: FAIL
[Window interface: window must inherit property "originAgentCluster" with the proper type]
expected: FAIL
[Window interface: attribute originAgentCluster]
expected: FAIL
[Window interface: attribute oncontextlost]
expected: FAIL
[Window interface: attribute oncontextrestored]
expected: FAIL
[Window interface: window must inherit property "oncontextlost" with the proper type]
expected: FAIL
[Window interface: window must inherit property "oncontextrestored" with the proper type]
expected: FAIL
[Document interface: attribute oncontextlost]
expected: FAIL
[Document interface: attribute oncontextrestored]
expected: FAIL
[Document interface: iframe.contentDocument must inherit property "oncontextlost" with the proper type]
expected: FAIL
[Document interface: iframe.contentDocument must inherit property "oncontextrestored" with the proper type]
expected: FAIL
[Document interface: new Document() must inherit property "oncontextlost" with the proper type]
expected: FAIL
[Document interface: new Document() must inherit property "oncontextrestored" with the proper type]
expected: FAIL
[Document interface: documentWithHandlers must inherit property "oncontextlost" with the proper type]
expected: FAIL
[Document interface: documentWithHandlers must inherit property "oncontextrestored" with the proper type]
expected: FAIL
[Window interface: attribute onbeforematch]
expected: FAIL
[Window interface: window must inherit property "onbeforematch" with the proper type]
expected: FAIL
[Document interface: attribute onbeforematch]
expected: FAIL
[Document interface: iframe.contentDocument must inherit property "onbeforematch" with the proper type]
expected: FAIL
[Document interface: new Document() must inherit property "onbeforematch" with the proper type]
expected: FAIL
[Document interface: documentWithHandlers must inherit property "onbeforematch" with the proper type]
expected: FAIL
[Window interface: attribute onbeforetoggle]
expected: FAIL
[Window interface: window must inherit property "onbeforetoggle" with the proper type]
expected: FAIL
[Document interface: attribute onbeforetoggle]
expected: FAIL
[Document interface: iframe.contentDocument must inherit property "onbeforetoggle" with the proper type]
expected: FAIL
[Document interface: new Document() must inherit property "onbeforetoggle" with the proper type]
expected: FAIL
[Document interface: documentWithHandlers must inherit property "onbeforetoggle" with the proper type]
expected: FAIL
[idlharness.https.html?include=HTML.*]
prefs: [dom.dialog_element.enabled:true]
[HTMLInputElement interface: attribute dirName]
expected: FAIL
[HTMLVideoElement interface: attribute playsInline]
expected: FAIL
[HTMLInputElement interface: createInput("range") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLMediaElement interface: document.createElement("audio") must inherit property "audioTracks" with the proper type]
expected: FAIL
[HTMLMediaElement interface: document.createElement("audio") must inherit property "videoTracks" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("url") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("reset") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLTextAreaElement interface: attribute dirName]
expected: FAIL
[HTMLInputElement interface: createInput("time") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("number") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLElement interface: attribute oncancel]
expected: FAIL
[HTMLMediaElement interface: new Audio() must inherit property "audioTracks" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("submit") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("file") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "oncancel" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("text") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("search") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("checkbox") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("hidden") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLMediaElement interface: document.createElement("video") must inherit property "getStartDate()" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("color") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("week") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLVideoElement interface: document.createElement("video") must inherit property "playsInline" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("date") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("datetime-local") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("tel") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("password") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: document.createElement("input") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLMediaElement interface: new Audio() must inherit property "videoTracks" with the proper type]
expected: FAIL
[HTMLMediaElement interface: attribute videoTracks]
expected: FAIL
[HTMLInputElement interface: createInput("image") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLMediaElement interface: attribute audioTracks]
expected: FAIL
[HTMLInputElement interface: createInput("email") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("radio") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("button") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLMediaElement interface: operation getStartDate()]
expected: FAIL
[HTMLMediaElement interface: document.createElement("video") must inherit property "videoTracks" with the proper type]
expected: FAIL
[HTMLMediaElement interface: new Audio() must inherit property "getStartDate()" with the proper type]
expected: FAIL
[HTMLMediaElement interface: document.createElement("video") must inherit property "audioTracks" with the proper type]
expected: FAIL
[HTMLMediaElement interface: document.createElement("audio") must inherit property "getStartDate()" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("month") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLIFrameElement interface: attribute loading]
expected: FAIL
[HTMLIFrameElement interface: document.createElement("iframe") must inherit property "loading" with the proper type]
expected: FAIL
[HTMLElement interface: attribute oncontextlost]
expected: FAIL
[HTMLElement interface: attribute oncontextrestored]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "oncontextlost" with the proper type]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "oncontextrestored" with the proper type]
expected: FAIL
[HTMLLinkElement interface: attribute blocking]
expected: FAIL
[HTMLLinkElement interface: document.createElement("link") must inherit property "blocking" with the proper type]
expected: FAIL
[HTMLStyleElement interface: attribute blocking]
expected: FAIL
[HTMLStyleElement interface: document.createElement("style") must inherit property "blocking" with the proper type]
expected: FAIL
[HTMLScriptElement interface: attribute blocking]
expected: FAIL
[HTMLScriptElement interface: document.createElement("script") must inherit property "blocking" with the proper type]
expected: FAIL
[HTMLElement interface: attribute onbeforematch]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "onbeforematch" with the proper type]
expected: FAIL
[HTMLElement interface: operation showPopover()]
expected: FAIL
[HTMLElement interface: operation hidePopover()]
expected: FAIL
[HTMLElement interface: operation togglePopover(optional boolean)]
expected: FAIL
[HTMLElement interface: attribute popover]
expected: FAIL
[HTMLElement interface: attribute onbeforetoggle]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "showPopover()" with the proper type]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "hidePopover()" with the proper type]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "togglePopover(optional boolean)" with the proper type]
expected: FAIL
[HTMLElement interface: calling togglePopover(optional boolean) on document.createElement("noscript") with too few arguments must throw TypeError]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "popover" with the proper type]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "onbeforetoggle" with the proper type]
expected: FAIL
[HTMLLinkElement interface: attribute fetchPriority]
expected: FAIL
[HTMLLinkElement interface: document.createElement("link") must inherit property "fetchPriority" with the proper type]
expected: FAIL
[HTMLImageElement interface: attribute fetchPriority]
expected: FAIL
[HTMLImageElement interface: document.createElement("img") must inherit property "fetchPriority" with the proper type]
expected: FAIL
[HTMLImageElement interface: new Image() must inherit property "fetchPriority" with the proper type]
expected: FAIL
[HTMLInputElement interface: attribute popoverTargetElement]
expected: FAIL
[HTMLInputElement interface: attribute popoverTargetAction]
expected: FAIL
[HTMLInputElement interface: document.createElement("input") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: document.createElement("input") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("text") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("text") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("hidden") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("hidden") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("search") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("search") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("tel") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("tel") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("url") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("url") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("email") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("email") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("password") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("password") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("date") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("date") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("month") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("month") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("week") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("week") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("time") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("time") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("datetime-local") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("datetime-local") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("number") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("number") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("range") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("range") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("color") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("color") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("checkbox") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("checkbox") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("radio") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("radio") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("file") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("file") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("submit") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("submit") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("image") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("image") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("reset") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("reset") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("button") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLInputElement interface: createInput("button") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLButtonElement interface: attribute popoverTargetElement]
expected: FAIL
[HTMLButtonElement interface: attribute popoverTargetAction]
expected: FAIL
[HTMLButtonElement interface: document.createElement("button") must inherit property "popoverTargetElement" with the proper type]
expected: FAIL
[HTMLButtonElement interface: document.createElement("button") must inherit property "popoverTargetAction" with the proper type]
expected: FAIL
[HTMLScriptElement interface: attribute fetchPriority]
expected: FAIL
[HTMLScriptElement interface: document.createElement("script") must inherit property "fetchPriority" with the proper type]
expected: FAIL
|