-
Notifications
You must be signed in to change notification settings - Fork 511
/
.openpublishing.redirection.json
4227 lines (4204 loc) · 182 KB
/
.openpublishing.redirection.json
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
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"redirections": [
/* Instructions: https://review.learn.microsoft.com/help/platform/redirect-articles */
/* Outline of this file:
DevTools
Microsoft Edge extensions
Progressive Web Apps
WebView2
Test and automation
Development tips for Microsoft Edge (was "Web platform")
Microsoft Edge IDE integration
Accessibility in Microsoft Edge
DualEngine
Redirects to Legal
DevTools
Extensions
Privacy
Redirects to MDN
Redirects to external webpages
WebDriver: "microsoft / edge-selenium-tools" repo
Archived EdgeHTML content
Old redirects (to /archive/)
*/
/* DevTools */
{
/* legacy "Overview of DevTools" url redirects to DevTools landing */
"source_path": "microsoft-edge/devtools-guide-chromium/index.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/landing/index",
"redirect_document_id": false
},
{
/* "Open DevTools" url redirects to "Overview of DevTools" */
"source_path": "microsoft-edge/devtools-guide-chromium/open/index.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/overview",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/experimental-features/focus-mode.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/overview",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/experimental-features/copilot-explain.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/console/copilot-explain-console",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/experimental-features/edge-command-palette.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/whats-new/2024/03/devtools-123#command-palette-experimental-feature-has-been-removed",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/beginners/css.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/css",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/beginners/html.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/dom",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/console/javascript.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/console/console-javascript",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/layers/layers-tool.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/3d-view/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/console/log.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/console/console-log",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/storage/applicationcache.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/customize/dark-theme.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/customize/theme",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/about-panel-drawer-tools.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/accessibility/accessibility-testing-in-devtools.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/accessibility/reference",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide-chromium/javascript-profiler/javascript-profiler-tool.md",
"redirect_url": "/microsoft-edge/devtools-guide-chromium/evaluate-performance/",
"redirect_document_id": false
},
/* Microsoft Edge extensions: */
{
"source_path": "microsoft-edge/extensions-chromium/enterprise/declare-permissions.md",
"redirect_url": "/microsoft-edge/extensions-chromium/developer-guide/declare-permissions",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/enterprise/match-patterns.md",
"redirect_url": "/microsoft-edge/extensions-chromium/developer-guide/match-patterns",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/enterprise/hosting-and-updating.md",
"redirect_url": "/microsoft-edge/extensions-chromium/publish/hosting-and-updating",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/enterprise/auto-update.md",
"redirect_url": "/microsoft-edge/extensions-chromium/publish/auto-update",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/publish/contact-us.md",
"redirect_url": "/microsoft-edge/extensions-chromium/publish/contact-extensions-team",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/publish/upload-video.md",
"redirect_url": "/microsoft-edge/extensions-chromium/publish/publish-extension",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/publish/update.md",
"redirect_url": "/microsoft-edge/extensions-chromium/publish/update-extension",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/store-policies/csp.md",
"redirect_url": "/microsoft-edge/extensions-chromium/developer-guide/csp",
"redirect_document_id": false
},
/* Progressive Web Apps: */
{
"source_path": "microsoft-edge/progressive-web-apps/index.md",
"redirect_url": "/microsoft-edge/progressive-web-apps-chromium/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/progressive-web-apps-chromium/serviceworker.md",
"redirect_url": "/microsoft-edge/progressive-web-apps-chromium/how-to/service-workers",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/progressive-web-apps-chromium/webappmanifests.md",
"redirect_url": "/microsoft-edge/progressive-web-apps-chromium/how-to/web-app-manifests",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/progressive-web-apps-chromium/get-started.md",
"redirect_url": "/microsoft-edge/progressive-web-apps-chromium/how-to/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/progressive-web-apps-chromium/experimental-features/index.md",
"redirect_url": "/microsoft-edge/progressive-web-apps-chromium/how-to/origin-trials",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/progressive-web-apps-chromium/offline.md",
"redirect_url": "/microsoft-edge/progressive-web-apps-chromium/how-to/offline",
"redirect_document_id": false
},
/* WebView2: */
{
"source_path": "microsoft-edge/hosting/webview2.md",
"redirect_url": "/microsoft-edge/webview2/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/hosting/webview2/gettingstarted.md",
"redirect_url": "/microsoft-edge/webview2/get-started/win32",
"redirect_document_id": false
},
/* WebView2 Release Notes: */
{
"source_path": "microsoft-edge/hosting/webview2/releasenotes.md",
"redirect_url": "/microsoft-edge/webview2/release-notes/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/releasenotes.md",
"redirect_url": "/microsoft-edge/webview2/release-notes/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/release-notes.md",
"redirect_url": "/microsoft-edge/webview2/release-notes/index",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/release-notes/template-prerelease.md",
"redirect_url": "/microsoft-edge/webview2/release-notes/index",
"redirect_document_id": false
},
/* WebView2 Concepts: */
{
"source_path": "microsoft-edge/webview2/concepts/browserfeatures.md",
"redirect_url": "/microsoft-edge/webview2/concepts/browser-features",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/concepts/userdatafolder.md",
"redirect_url": "/microsoft-edge/webview2/concepts/user-data-folder",
"redirect_document_id": false
},
/* WebView2 Getting started: */
{
"source_path": "microsoft-edge/webview2/gettingstarted/win32.md",
"redirect_url": "/microsoft-edge/webview2/get-started/win32",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/gettingstarted/winforms.md",
"redirect_url": "/microsoft-edge/webview2/get-started/winforms",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/gettingstarted/winui.md",
"redirect_url": "/microsoft-edge/webview2/get-started/winui",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/gettingstarted/wpf.md",
"redirect_url": "/microsoft-edge/webview2/get-started/wpf",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/samples/webview2-winui3-sample.md",
"redirect_url": "/microsoft-edge/webview2/code-samples-links",
"redirect_document_id": false
},
/* WebView2 How-to: */
{
"source_path": "microsoft-edge/webview2/howto/chromium-devtools-protocol.md",
"redirect_url": "/microsoft-edge/webview2/how-to/chromium-devtools-protocol",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/howto/debug.md",
"redirect_url": "/microsoft-edge/webview2/how-to/debug",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/howto/js.md",
"redirect_url": "/microsoft-edge/webview2/how-to/javascript",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/howto/static.md",
"redirect_url": "/microsoft-edge/webview2/how-to/static",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/howto/webdriver.md",
"redirect_url": "/microsoft-edge/webview2/how-to/webdriver",
"redirect_document_id": false
},
/* WebView2 Reference: */
{
"source_path": "microsoft-edge/hosting/webview2/reference/icorewebview2.md",
"redirect_url": "/microsoft-edge/webview2/reference/win32/icorewebview2",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/hosting/webview2/reference-webview2.md",
"redirect_url": "/microsoft-edge/webview2/webview2-api-reference",
"redirect_document_id": false
},
/* WebView2 Reference > .NET: */
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515-reference-webview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538-reference-webview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628-reference-webview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/namespace-microsoft-web-webview2-core.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/namespace-microsoft-web-webview2-core.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/namespace-microsoft-web-webview2-core.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2acceleratorkeypressedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2acceleratorkeypressedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2contentloadingeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2contentloadingeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2controller.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2controller",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2deferral.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2deferral",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2devtoolsprotocoleventreceivedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2devtoolsprotocoleventreceivedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2devtoolsprotocoleventreceiver.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2devtoolsprotocoleventreceiver",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2environment.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2environment",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2environmentoptions.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2environmentoptions",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2movefocusrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2movefocusrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2navigationcompletedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2navigationcompletedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2navigationstartingeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2navigationstartingeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2newwindowrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2newwindowrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2permissionrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2permissionrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2physicalkeystatus.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2physicalkeystatus",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2processfailedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2processfailedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2scriptdialogopeningeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2scriptdialogopeningeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2settings.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2settings",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2sourcechangedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2sourcechangedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2webmessagereceivedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webmessagereceivedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-corewebview2webresourcerequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webresourcerequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-515/microsoft-web-webview2-core-edgenotfoundexception.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.edgenotfoundexception",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2acceleratorkeypressedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2acceleratorkeypressedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2compositioncontroller.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2compositioncontroller",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2contentloadingeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2contentloadingeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2controller.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2controller",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2deferral.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2deferral",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2devtoolsprotocoleventreceivedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2devtoolsprotocoleventreceivedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2devtoolsprotocoleventreceiver.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2devtoolsprotocoleventreceiver",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2environment.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2environment",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2environmentoptions.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2environmentoptions",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2matrix4x4.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2matrix4x4",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2movefocusrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2movefocusrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2navigationcompletedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2navigationcompletedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2navigationstartingeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2navigationstartingeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2newwindowrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2newwindowrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2permissionrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2permissionrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2physicalkeystatus.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2physicalkeystatus",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2pointerinfo.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2pointerinfo",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2processfailedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2processfailedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2scriptdialogopeningeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2scriptdialogopeningeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2settings.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2settings",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2sourcechangedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2sourcechangedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2webmessagereceivedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webmessagereceivedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2webresourcerequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webresourcerequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2webresourceresponsereceivedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webresourceresponsereceivedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-corewebview2windowfeatures.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2windowfeatures",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-538/microsoft-web-webview2-core-edgenotfoundexception.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.edgenotfoundexception",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2acceleratorkeypressedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2acceleratorkeypressedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2compositioncontroller.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2compositioncontroller",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2contentloadingeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2contentloadingeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2controller.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2controller",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2deferral.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2deferral",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2devtoolsprotocoleventreceivedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2devtoolsprotocoleventreceivedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2devtoolsprotocoleventreceiver.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2devtoolsprotocoleventreceiver",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2environment.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2environment",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2environmentoptions.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2environmentoptions",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2httpheaderscollectioniterator.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2httpheaderscollectioniterator",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2httprequestheaders.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2httprequestheaders",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2httpresponseheaders.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2httpresponseheaders",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2matrix4x4.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2matrix4x4",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2movefocusrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2movefocusrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2navigationcompletedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2navigationcompletedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2navigationstartingeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2navigationstartingeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2newwindowrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2newwindowrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2permissionrequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2permissionrequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2physicalkeystatus.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2physicalkeystatus",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2pointerinfo.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2pointerinfo",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2processfailedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2processfailedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2scriptdialogopeningeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2scriptdialogopeningeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2settings.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2settings",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2sourcechangedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2sourcechangedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2webmessagereceivedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webmessagereceivedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2webresourcerequest.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webresourcerequest",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2webresourcerequestedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webresourcerequestedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2webresourceresponse.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webresourceresponse",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2webresourceresponsereceivedeventargs.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2webresourceresponsereceivedeventargs",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-corewebview2windowfeatures.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.corewebview2windowfeatures",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/dotnet/0-9-628/microsoft-web-webview2-core-edgenotfoundexception.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.core.edgenotfoundexception",
"redirect_document_id": false
},
/* WebView2 Reference > WinForms: */
{
"source_path": "microsoft-edge/webview2/reference/winforms/0-9-515-reference-webview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.winforms",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/winforms/0-9-515/microsoft-web-webview2-winforms-webview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.winforms.webview2",
"redirect_document_id": false
},
/* WebView2 Reference > WPF: */
{
"source_path": "microsoft-edge/webview2/reference/wpf/0-9-515-reference-webview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.wpf",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/wpf/0-9-515/microsoft-web-webview2-wpf-corewebview2creationproperties.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.wpf.corewebview2creationproperties",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/webview2/reference/wpf/0-9-515/microsoft-web-webview2-wpf-webview2.md",
"redirect_url": "/dotnet/api/microsoft.web.webview2.wpf.webview2",
"redirect_document_id": false
},
/* end of WebView2 Reference */
/* Test and automation: none */
/* Development tips for Microsoft Edge (was "Web platform"): */
{
"source_path": "microsoft-edge/web-platform/user-agent-string.md",
"redirect_url": "/microsoft-edge/web-platform/user-agent-guidance",
"redirect_document_id": false
},
/* Microsoft Edge IDE integration: */
{
"source_path": "microsoft-edge/visual-studio-code/index.md",
"redirect_url": "/microsoft-edge/visual-studio-code/ide-integration",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/visual-studio-code/elements-for-edge.md",
"redirect_url": "/microsoft-edge/visual-studio-code/microsoft-edge-devtools-extension",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/visual-studio-code/webhint.md",
"redirect_url": "/microsoft-edge/visual-studio-code/microsoft-edge-devtools-extension",
"redirect_document_id": false
},
/* Accessibility in Microsoft Edge: none */
/* DualEngine: none */
/* Redirects to Legal: */
/* DevTools: */
{
"source_path": "microsoft-edge/devtools-guide/devtools-preview_software-license-terms.md",
"redirect_url": "https://learn.microsoft.com/legal/microsoft-edge/devtools-preview_software-license-terms",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/devtools-guide/devtools_software-license-terms.md",
"redirect_url": "https://learn.microsoft.com/legal/microsoft-edge/microsoft-edge-devtools-license-terms",
"redirect_document_id": false
},
/* Extensions: */
{
"source_path": "microsoft-edge/extensions/microsoft-browser-extension-policy.md",
"redirect_url": "https://learn.microsoft.com/legal/microsoft-edge/extensions/microsoft-browser-extension-policy",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/store-policies/ada-addendum.md",
"redirect_url": "https://learn.microsoft.com/legal/microsoft-edge/extensions/ada-addendum",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/extensions-chromium/store-policies/developer-policies.md",
"redirect_url": "https://learn.microsoft.com/legal/microsoft-edge/extensions/developer-policies",
"redirect_document_id": false
},
/* Privacy: */
{
"source_path": "microsoft-edge/privacy-whitepaper/index.md",
"redirect_url": "https://learn.microsoft.com/legal/microsoft-edge/privacy",
"redirect_document_id": false
},
/* Redirects to MDN: */
{
"source_path": "microsoft-edge/dev-guide/css/animations.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/CSS_Animations/Using_CSS_animations",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/calc-function.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/calc",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/filter-effects.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/filter",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/flexbox.md",
"redirect_url": "https://developer.mozilla.org/docs/Glossary/Flexbox",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/gradients.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/CSS_Images/Using_CSS_gradients",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/grid-layout.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/CSS_Grid_Layout",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/length-units-relative-and-absolute.md",
"redirect_url": "https://developer.mozilla.org/docs/Learn/CSS/Introduction_to_CSS/Values_and_units",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/media-queries.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/Media_Queries",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/media-query-listeners.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/MediaQueryList",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/multi-column-layout.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/CSS_Columns",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/supports-at-rule.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/@supports",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/transforms.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/CSS_Transforms",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/css/transitions.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/device/fullscreen-api.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/Fullscreen_API",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/device/geolocation.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/Geolocation",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/device/high-dpi-support.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/Window/devicePixelRatio",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/device/screen-orientation-api.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/ScreenOrientation",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom.md",
"redirect_url": "https://developer.mozilla.org/docs/Glossary/DOM",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/index.md",
"redirect_url": "https://developer.mozilla.org/docs/Glossary/DOM",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/dom-event-constructors.md",
"redirect_url": "https://developer.mozilla.org/docs/Glossary/DOM",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/gamepad-api.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/Gamepad_API",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/input-method-editor-api.md",
"redirect_url": "https://developer.mozilla.org/docs/Mozilla/IME_handling_guide",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/mutation-observers.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/MutationObserver",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/pointer-events.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/PointerEvent",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/pointer-lock.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/Pointer_Lock_API",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/touch-events.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/TouchEvent",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/dom/xpath.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/API/TouchEvent",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/graphics.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/Guide/Graphics",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/graphics/index.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/Guide/Graphics",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/graphics/canvas.md",
"redirect_url": "https://developer.mozilla.org/docs/HTML/Canvas",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/graphics/svg.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/SVG",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/graphics/webgl.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/WebGL",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/html5.md",
"redirect_url": "https://developer.mozilla.org/docs/Glossary/HTML5",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/html5/index.md",
"redirect_url": "https://developer.mozilla.org/docs/Glossary/HTML5",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/html5/audio.md",
"redirect_url": "https://developer.mozilla.org/docs/Learn/HTML/Multimedia_and_embedding/Video_and_audio_content",
"redirect_document_id": false
},
{
"source_path": "microsoft-edge/dev-guide/html5/file-api.md",
"redirect_url": "https://developer.mozilla.org/docs/Web/HTML/Element/input/file",