-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
2153 lines (1884 loc) · 111 KB
/
test.html
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
<!doctype html>
<html itemscope="" itemtype="http://schema.org/SearchResultsPage" lang="fr">
<head>
<meta content="/images/branding/googleg/1x/googleg_standard_color_128dp.png" itemprop="image">
<meta content="origin" name="referrer">
<title>javascript dom outline - Recherche Google</title>
<style>@-webkit-keyframes qs-timer {0%{}}.iUh30{font-size:14px;padding-top:1px;line-height:1.3}.f{color:#70757a;line-height:1.58}.a,cite,cite a:link,cite a:visited{color:#202124;font-style:normal}a.fl:link,.fl a,.gl a:link{color:#1a0dab}.r a.fl{font-size:14px}.r{font-weight:inherit;font-size:small;margin:0;line-height:1.58;}.std,.g{font-family:arial,sans-serif;font-size:14px;}.g{line-height:1.2;text-align:left}.g,.KIy09e{width:600px;margin-top:0;margin-bottom:28px}.s{max-width:48em;color:#4d5156;line-height:1.58}h4.r{font-size:small}.st{line-height:1.58;word-wrap:break-word}.st sup{line-height:0.9}.z1asCe{display:inline-block;fill:currentColor;height:24px;line-height:24px;position:relative;width:24px}.z1asCe svg{display:block;height:100%;width:100%}.vk_c a{text-decoration:none}.vk_gn{color:#1e8e3e !important}.vk_rd{color:#ea4335 !important}.bTuXH{color:#3c4043 !important}.vk_gy{color:#878787 !important}.vk_bk{color:#202124 !important}.dDoNo{font-weight:lighter !important;margin-bottom:5px;font-size:xx-large !important;}.vk_h{font-weight:lighter !important;font-size:x-large !important;}.vk_sh{font-weight:lighter !important;font-size:medium !important;}.Uekwlc{font-weight:lighter !important;font-size:14px;}.p13zmc{font-weight:lighter !important}.cYvRhe{font-weight:bold !important}#rhs .fIcnad{border:none;margin-left:0}.vkc_np{margin-left:-16px;margin-right:-16px}.WIDPrb{padding-left:16px}.iiFzhd{padding-right:16px}.vk_pt{padding-top:20px}.QiLuMc{padding-bottom:20px}.vk_gbt{border-top:1px solid #f8f9fa}.vk_spc{height:16px;width:100%}.vk_arc{border-top:1px solid #ebebeb;cursor:pointer;height:0px;margin-bottom:-19px;overflow:hidden;padding:20px 0;text-align:center}.vk_ard{top:-11px}.vk_aru{bottom:-6px}.vk_ard,.vk_aru{background-color:#DFE1E5;margin-left:auto;margin-right:auto;position:relative;height:6px;width:64px}.vk_ard:after,.vk_ard:before,.vk_aru:after,.vk_aru:before{content:' ';height:0;left:0;position:absolute;width:0;border-left:32px solid rgba(255,255,255,.00);border-right:32px solid rgba(255,255,255,.00)}.vk_ard:before{border-top:16px solid #DFE1E5;top:6px}.vk_aru:before{border-bottom:16px solid #DFE1E5;bottom:6px}.vk_ard:after{top:0;border-top:16px solid #fff}.vk_aru:after{bottom:0;border-bottom:16px solid #fff}.vk_bk.vk_ard,.vk_bk.vk_aru{background-color:#202124}.vk_bk.vk_ard:before{border-top-color:#202124}.vk_bk.vk_aru:before{border-bottom-color:#202124}.di8g3{padding:6px 8px;}#center_col .di8g3{margin:0 -35px 0 -8px;padding:6px 20px 0;}#rhs .di8g3{margin-left:2px;padding-bottom:5px;padding-top:5px}.di8g3,.di8g3 a{color:#70757a !important;text-decoration:none}.di8g3 a:hover{text-decoration:underline}.di8g3{font-size:11px !important;}.vk_c{position:relative;padding:20px 16px 24px;background-color:#fff;width:618px;}.vk_c,#rhs .fIcnad{border-radius:8px;border:1px solid #dfe1e5;box-shadow:none}.vk_c .vk_c{border-radius:0;box-shadow:none;background-color:transparent;border:0;box-shadow:none;margin:0;padding:0;position:static}.pVFdhc{background-color:#ebebeb;height:1px}.vk_tbl{border-collapse:collapse}.vk_tbl td{padding:0}.xpdclps,.xpdxpnd{overflow:hidden}.xpdclps,.xpdxpnd{transition:max-height 0.3s}.xpdxpnd,.xpdopen .xpdclps,.xpdopen .xpdxpnd.xpdnoxpnd{max-height:0}.xpdopen .xpdxpnd{max-height:none}.xpdopen .xpdbox .xpdxpnd,.xpdopen .xpdbox.xpdopen .xpdclps{max-height:0}.xpdopen .xpdbox.xpdopen .xpdxpnd,.xpdopen .xpdbox .xpdclps{max-height:none}.xpdclose .k5nfEc{display:none}.fp-i .SzDvzc{display:none}.fp-f{bottom:0;height:auto;left:0;position:fixed !important;right:0;top:0;width:auto;z-index:127}.fp-h:not(.fp-nh):not(.goog-modalpopup-bg):not(.goog-modalpopup){display:none !important}.fp-zh.fp-h:not(.fp-nh):not(.goog-modalpopup-bg):not(.goog-modalpopup){display:block !important;height:0;overflow:hidden;transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.fp-i .fp-c{display:block;min-height:100vh}li.fp-c{list-style:none}.fp-w{box-sizing:border-box;left:0;margin-left:auto;margin-right:auto;max-width:1217px;right:0}html{font-family:arial,sans-serif}body,h1{font-family:arial,sans-serif;font-size:14px;}h1{font-weight:normal;margin:0;padding:0}h3{font-size:medium;font-weight:normal;margin:0;padding:0}body{margin:0;background:#fff;color:#202124;}a{color:#1a0dab;text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,.10)}a:visited{color:#609}a:hover{text-decoration:underline}a:hover h3{text-decoration:underline}button{margin:0}ol li{list-style:none}ol,ul,li{margin:0;padding:0}em{font-weight:bold;font-style:normal}.aCOpRe em,.st em{color:#5f6368}.aCOpRe a em,.st a em{color:inherit}input{font-family:arial,sans-serif;font-size:14px}#res h3,#botstuff h3{font-size:20px;line-height:1.3;}.gl,#foot a{white-space:nowrap}.gic{position:relative;overflow:hidden;z-index:0}.mw{max-width:1197px}.big .mw{max-width:1280px}#cnt{clear:both;min-width:833px;margin-left:0;padding-top:20px;box-sizing:border-box;position:relative;min-height:100vh;}.col{float:left}a.a-no-hover-decoration:hover{text-decoration:none}#center_col{clear:both}#center_col{position:relative;margin-right:264px;margin-left:138px;}#cnt #center_col{width:652px}#cnt #center_col,.mw #center_col{margin-left:180px}.big #center_col{margin-left:138px;}#rso{margin-top:6px;}.ellip{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rc{position:relative}.Jb0Zif .BDNLRc{margin:16px 16px -11px}.gl:visited{color:#666}.RUXr2d{display:inline}.MTB56{margin-right:12px;vertical-align:middle}.qpGQpf{clear:both;padding-top:6px}.tcPEUc .MTB56{display:none}.aCOpRe{line-height:1.58;word-wrap:break-word}.aCOpRe sup{line-height:0.9}.yuRUbf{font-weight:normal;font-size:small;line-height:1.58;}.IsZvec{max-width:48em;color:#4d5156;line-height:1.58}.uo4vr{color:#70757a;line-height:1.58}.IjZ7ze{display:inline-block;color:#70757a;font-size:12px;line-height:1.34;white-space:nowrap}.FyYA1e{margin:5px 0}.P1usbc{display:table;white-space:nowrap;margin:5px 0;line-height:1.58;color:#70757a}.G1Rrjc{display:table-cell;padding-left:15px;vertical-align:baseline}.i4vd5e{display:table-cell}.wrBvFf{overflow:hidden;text-overflow:ellipsis}.VNLkW{display:table-row;vertical-align:top}.h7mcFf{color:#70757a}.k6DEPe{display:table-row;width:100%}.TXwUJf{color:#70757a}.PcHvNb{position:absolute}.N3nEGc{background-color:#fff;float:left;margin-top:4px}.wEQKyf.N3nEGc{float:right;margin:7px 0 5px 12px}.Ixi80c{margin-top:0px}.i0PvJb{background-color:#000}.mWTy7c{border-top-left-radius:2px;bottom:0;font-size:11px;font-weight:bold;padding:1px 3px;position:absolute;right:0;text-align:right;text-decoration:none;background-color:rgba(0,0,0,.70);color:#fff}.rGhul{display:block;position:relative;overflow:hidden}.rGhul:focus{outline-style:solid;outline-width:2px}.TbwUpd a.fl{font-size:14px}.TbwUpd.rLwn0d{overflow:hidden;text-overflow:ellipsis}.rhscol .qLRx3b{font-size:14px;line-height:1.58}.TbwUpd{display:inline-block;padding-bottom:1px;padding-top:1px;-webkit-text-size-adjust:none}.NJjxre{position:absolute;left:0;top:0}.GHDvEf,.GHDvEf:hover,.GHDvEf.selected,.GHDvEf.selected:hover{display:inline-block;background-color:#fff;height:12px;margin-top:1px;user-select:none;width:13px}.action-menu .mn-dwn-arw{border-color:#202124 transparent;margin-top:-3px;margin-left:3px;left:0;border-color:#70757a transparent}.action-menu{display:inline;margin:0 3px;position:relative;user-select:none;margin-top:1px;vertical-align:middle}.action-menu-panel{padding:6px 0;position:absolute;left:0;padding:0;top:12px;visibility:hidden;background:#fff;border:1px solid #dadce0;border:1px solid rgba(0,0,0,.20);font-size:13px;white-space:nowrap;z-index:3;transition:opacity 0.218s;box-shadow:0 2px 4px rgba(0,0,0,.20)}.action-menu-item{cursor:pointer;user-select:none}.action-menu-item:hover{background-color:#f8f9fa}#rcnt .action-menu-item a.fl,.action-menu-item a.fl{color:#3c4043;display:block;padding:7px 18px;text-decoration:none;outline:0}.action-menu-panel:focus,.action-menu-item:focus,.action-menu-item a:focus{outline:none}.action-menu-item{margin:0;padding:0;-moz-user-select:none;}.action-menu-item.selected{background-color:#f8f9fa}.Uo8X3b{clip:rect(1px,1px,1px,1px);height:1px;margin:0;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px;z-index:-1000;user-select:none}#rhs{min-width:268px;display:block;position:relative;padding-bottom:15px;margin-left:892px;padding-right:8px}#rhs .scrt.VjDLd,#rhs table.VjDLd{border:0}#rhs .VjDLd{border:1px solid #f8f9fa;padding-left:17px;padding-right:16px;position:relative;width:457px;box-sizing:border-box}#center_col .rhsl5{display:none}#rhs.rhstc4 .VjDLd{width:369px}.rhstc4 .rhsg4{background:none !important;display:none !important}.rhstc5 .rhsl5{background:none !important;display:none !important}[dir='ltr'],[dir='rtl']{unicode-bidi:isolate;unicode-bidi:isolate}bdo[dir='ltr'],bdo[dir='rtl']{unicode-bidi:bidi-override;unicode-bidi:isolate-override;unicode-bidi:isolate-override}#hdtb{background:#fff;color:#70757a;font-size:13px;border-bottom:1px solid #ebebeb;margin-top:-21px;outline-width:0;outline:none;position:relative;z-index:126}#hdtb.hdtba{border-bottom:none}.hdtb-mitem .hdtb-dd-b,.hdtb-mitem a,.GshZze{padding:0 12px;color:#5f6368;text-decoration:none;display:inline-block;}.hdtb-mitem{height:16px;line-height:16px;margin:11px 1px 0}.hdtb-mitem .hdtb-dd-b,.hdtb-mitem.hdtb-msel,.hdtb-mitem a{padding:16px 12px 12px 10px;}.HF9Klc{margin-right:5px;vertical-align:text-bottom}.hdtb-mitem .sqXXR{padding-left:6px}.hdtb-mn-hd:hover{color:#202124}.hdtb-mitem a:active,.hdtb-mn-hd:active{color:#1a73e8}.more-vert{vertical-align:text-bottom}#hdtbMenus{background-color:transparent;top:0;width:100%;height:22px;position:absolute;transition:top 220ms ease-in-out;transition:top 220ms ease-in-out;}.hdtb-td-h{display:none}#hdtbMenus.hdtb-td-o{top:58px;padding-top:3px;padding-bottom:7px;top:0}body.vasq #hdtbMenus.hdtb-td-o{top:68px}#hdtb.hdtba #hdtbMenus{top:21px}body.vasq #hdtb.hdtba #hdtbMenus.hdtb-td-o{top:58px}#hdtb.hdtba #hdtbMenus{background-color:#fff;border-bottom:1px solid #f8f9fa;padding:7px 0px}#botabar{transition:margin-top 220ms ease-in-out;transition:margin-top 220ms ease-in-out}#hdtbMenus.hdtb-td-c{}#hdtbSum{background:#fff;height:58px;padding:0;position:relative;z-index:126}#hdtb-msb{float:left;position:relative;white-space:nowrap;align-items:baseline;display:flex;-ms-flex-pack:justify;justify-content:space-between;min-width:832px}#hdtb-msb-vis{display:inline;margin-left:169px}#hdtb-msb .hdtb-mitem{display:inline-block}#hdtb-msb .hdtb-mitem.hdtb-msel{border-bottom:3px solid #1a73e8;color:#1a73e8;}#hdtb.hdtba #hdtb-msb .hdtb-mitem.hdtb-msel{border-bottom:none}#hdtb-msb .hdtb-mitem.hdtb-msel:hover{cursor:pointer}#hdtb-msb .hdtb-mitem.hdtb-msel:active{background:none}.hdtb-mitem a{color:#5f6368}#hdtb-msb .hdtb-mitem.hdtb-imb.mlinesep{width:0px;margin-left:8px;margin-right:8px;padding:0px;border-left:1px solid rgba(0,0,0,.12)}.mn-hd-txt{display:inline-block;padding-right:6px;white-space:nowrap}.mn-dwn-arw{border-color:#70757a transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;margin-left:-2px;top:50%;margin-top:-2px;position:absolute}.hdtb-mn-hd:hover .mn-dwn-arw{border-color:#202124 transparent}.hdtb-mn-hd:active .mn-dwn-arw{border-color:#1a73e8 transparent}#hdtb-msb>.hdtb-mitem:first-child{margin-left:180px}body.vasq #hdtbSum{height:58px}body.vasq #hdtb-msb .hdtb-mitem.hdtb-msel{}#top_nav{-moz-user-select:none;min-width:1261px}.GyAeWb{clear:both;margin-top:0px;position:relative;}.eqAnXb{font-size:medium;font-weight:normal;border:0;margin:0;}.main{width:100%;}.CvDJxb{min-width:1261px;z-index:128}.dodTBe{height:65px;}.appbar{background:#fff;min-width:1261px;-webkit-box-sizing:border-box;width:100%}</style>
</head>
<body jsmodel="TvHxbe" class="srp vasq" jscontroller="aCZVp" marginheight="3" topmargin="3" jsaction="rcuQ6b:npT2md" id="gsr">
<div id="_YSvNX5SMCoi5gwf1z4-ABQ1"></div>
<div style="height: 100px; background-color: red;">
<h1 class="Uo8X3b">Liens d'accessibilité</h1>
<div jscontroller="r36a9c" class="wYq63b">
<style>.wYq63b{display:flex;left:0;position:absolute;top:0;z-index:1001}.S6VXfe{align-items:center;background-color:#fff;border-radius:0 2px 2px 0;box-shadow:0 2px 2px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.08);display:flex;margin:80px auto 8px 0;overflow:hidden}.gyPpGe,.gyPpGe:visited,.qlVNAd{border:2px solid rgba(0,0,0,.16);border-radius:2px;color:#4b11a8;cursor:pointer;display:inline-block;font-size:14px;line-height:20px;margin:6px 11px;min-height:32px;text-decoration:underline;text-align:center;width:106px}.gyPpGe:not(:focus){clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute;padding:0}</style>
<div class="S6VXfe"><a jsname="BKxS1e" class="gyPpGe" role="link" tabindex="0" jsaction="i3viod" data-ved="0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ67oDCAU">Passer directement au contenu principal</a><a jsname="KI37ad" class="gyPpGe" href="https://support.google.com/websearch/answer/181196?hl=fr" onmousedown="return rwt(this,'','','','','AOvVaw0PXPn8Yi8f9p2I2HWq66H4','','0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQwcMDCAY','','',event)">Aide sur l'accessibilité</a>
<div data-async-context="async_id:duf3-78;authority:0;card_id:;entry_point:0;feature_id:;ftoe:0;header:0;is_jobs_spam_form:0;open:0;preselect_answer_index:-1;suggestions:;suggestions_subtypes:;suggestions_types:;surface:0;title:;type:78">
<style>a.duf3{color:#70757a;float:right;font-style:italic;tap-highlight-color:rgba(0,0,0,.00);tap-highlight-color:rgba(0,0,0,.00)}a.aciXEb{padding:0 5px;}.RTZ84b{color:#70757a;cursor:pointer;padding-right:8px}.XEKxtf{color:#70757a;float:right;font-size:12px;line-height:1.34;padding-bottom:4px}</style>
<div jscontroller="xz7cCd" style="display:none" jsaction="rcuQ6b:npT2md"></div>
<div id="duf3-78" data-jiis="up" data-async-type="duffy3" data-async-context-required="type,open,feature_id,async_id,entry_point,authority,card_id,ftoe,title,header,suggestions,surface,suggestions_types,suggestions_subtypes,preselect_answer_index,is_jobs_spam_form" class="y yp" data-ved="0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ-0EIBw"></div><a jsname="JUypV" class="gyPpGe" data-async-trigger="duf3-78" role="link" tabindex="0" jsaction="async.u">Commentaires sur l'accessibilité</a>
</div>
</div>
</div>
</div><noscript>
<meta content="0;url=/search?q=javascript+dom+outline&hl=fr&gbv=1&sei=YSvNX5SMCoi5gwf1z4-ABQ" http-equiv="refresh">
<style>table,div,span,p{display:none}</style>
<div style="display:block">Cliquez <a href="/search?q=javascript+dom+outline&hl=fr&gbv=1&sei=YSvNX5SMCoi5gwf1z4-ABQ">ici</a> si, d'ici quelques secondes, vous n'avez pas été redirigé.</div>
</noscript>
<style>.gsfi,.lst{font:16px arial,sans-serif;color:rgba(0,0,0,.87);line-height:34px;height:34px !important}.hp .nojsb,.srp .jsb{display:none}.tsf{width:833px;}#searchform{width:100%}.minidiv .sfbg{background:#fff;box-shadow:0 1px 6px 0 rgba(32, 33, 36, 0.28);height:72px;overflow:hidden}@media only screen and (max-height:768px){.hp #searchform{top:269px}}.srp #searchform{position:absolute;top:20px;}.sfbg{background:#fff;height:69px;left:0;position:absolute;width:100%}.sfbgg{height:65px}.A8SBwf{position:relative;margin:0 auto;margin-left:133px;width:692px;padding-left:27px;}.RNNXgb{background:#fff;display:flex;border:1px solid #dfe1e5;box-shadow:none;height:39px;width:690px;border-radius:24px;z-index:3;height:44px;margin:0 auto;}.emcav .RNNXgb{border-bottom-left-radius:0;border-bottom-right-radius:0;border-color:rgba(223,225,229,0);box-shadow:0 1px 6px rgba(32,33,36,.28)}.RNNXgb:hover,.sbfc .RNNXgb{box-shadow:0 1px 6px rgba(32,33,36,.28);border-color:rgba(223,225,229,0)}.SDkEP{flex:1;display:flex;padding:5px 4px 0 16px;padding-left:14px;}.logo{position:absolute;left:-139px;padding:4px 28px 0 30px;top:4px}.sbfc .iblpc,.emcav .iblpc{padding-right:14px;margin-left:-1px}.iblpc span{display:none}.sbfc .iblpc span,.emcav .iblpc span{display:block}.sbfc.A8SBwf,.emcav.A8SBwf{padding-left:0;width:719px}.sbfc .RNNXgb,.emcav .RNNXgb{width:717px}.iblpc{display:flex;align-items:center;padding-right:6px;margin-top:-7px}.doodle{margin-top:-2px}.hsuHs{margin:auto}.wFncld{color:#9aa0a6;height:20px;width:20px}.gLFyf{background-color:transparent;border:none;margin:0;padding:0;color:rgba(0,0,0,.87);word-wrap:break-word;outline:none;display:flex;flex:100%;tap-highlight-color:transparent;margin-top:-37px;height:34px;font-size:16px}.a4bIc{display:flex;flex:1;flex-wrap:wrap}.pR49Ae{color:transparent;flex:100%;white-space:pre;height:34px}.pR49Ae span{background:url("/images/experiments/wavy-underline.png") repeat-x scroll 0 100% transparent;padding:0 0 10px 0;}.dRYYxd{display:flex;flex:0 0 auto;margin-top:-5px;align-items:stretch;flex-direction:row}.clear-button{flex:1 0 auto;display:none;cursor:pointer;align-items:center;border:0;background:transparent;outline:none;padding:0 8px;line-height:44px}.XoaYSb{display:flex}.lBbtTb{height:100%;color:#80868b;vertical-align:middle;outline:none}.clear-button{padding-right:4px}.lBbtTb{margin-right:12px}.FqnKTc{border-left:1px solid #dfe1e5;height:65%}.Tg7LZd{height:44px;width:44px;background:transparent;border:none;cursor:pointer;flex:0 0 auto;padding:0}.Tg7LZd{flex:0 0 auto;padding-right:13px}html:not(.zAoYTe) .Tg7LZd:focus{outline:none}.FAuhyb{background:none;color:#4285f4;height:24px;width:24px;margin:auto}.UUbT9{position:absolute;width:100%;text-align:left;margin-top:-1px;z-index:989;cursor:default;user-select:none}.aajZCb{background:#fff;box-shadow:0 4px 6px rgba(32,33,36,.28);display:flex;flex-direction:column;list-style-type:none;margin:0;padding:0;border:0;border-radius:0 0 24px 24px;overflow:hidden}.erkvQe{flex:auto;padding-bottom:16px}.RjPuVb{height:1px;margin:0 26px 0 0}.S3nFnd .RjPuVb,.S3nFnd .aajZCb{flex:0 0 auto}.lh87ke:link,.lh87ke:visited{color:#36c;cursor:pointer;font:11px arial,sans-serif;padding:0 5px;text-decoration:none;flex:auto;align-self:flex-end;margin:0 16px 5px 0}.lh87ke:hover{text-decoration:underline}.xtSCL{border-top:1px solid #e8eaed;margin:0 14px;padding-bottom:4px}#ynRric{display:none}.ynRric{list-style-type:none;flex-direction:column;color:#80868b;font-family:arial,sans-serif;font-size:14px;letter-spacing:0.75px;margin:0 20px 0 16px;padding:8px 0 8px 0;line-height:16px;text-transform:uppercase}#sbt{display:none}.sbct{display:flex;align-items:center;min-width:0;max-height:none;padding:0}.jKWzZXdEJWi__suggestions-inner-container{flex:auto;display:flex;margin:0 20px;align-items:center;margin:0 20px 0 14px}.sbtc{display:flex;flex:auto;flex-direction:column;min-width:0;max-height:none;padding:6px 0}.sbic{display:flex;flex:0 1 auto;align-items:center;margin-right:14px}.sbl2{line-height:12px;font-size:13px;color:#80868b;margin-top:2px}.sbl1{display:flex;font-size:16px;color:#212121;flex:auto;align-items:center;word-break:break-all;padding-right:8px}.sbl1>span{flex:auto}.sbab{display:flex;flex:0 1 auto;align-self:stretch}.JUypV{font-size:8pt;margin-top:-30px;position:absolute;right:16px}</style>
<div id="_YSvNX5SMCoi5gwf1z4-ABQ3"></div>
<div class="CvDJxb" jscontroller="ZyRBae" jsaction="rcuQ6b:npT2md" id="searchform">
<div id="_YSvNX5SMCoi5gwf1z4-ABQ5"></div>
<div class="sfbg" style="margin-top:-20px">
<div class="sfbgg"></div>
</div>
<form class="tsf" action="/search" id="tsf" data-submitfalse="q" method="GET" name="f" role="search">
<div id="tophf"><input name="hl" value="fr" type="hidden"><input value="YSvNX5SMCoi5gwf1z4-ABQ" name="ei" type="hidden"><input value="AINFCbYAAAAAX805cWRokNbOHVdDqEDabAEg2Q4nm7Z6" disabled="true" name="iflsig" type="hidden"></div>
<div jsmodel="vWNDde" jsdata="MuIEvd;;AOjZLk">
<div jscontroller="mvYTse" jsmodel="TMlYFc" class="A8SBwf" jsdata="LVplcb;_;" jsaction="lX6RWd:w3Wsmc;DkpM0b:d3sQLd;IQOavd:dFyQEf;XzZZPe:jI3wzf;Aghsf:AVsnlb;iHd9U:Q7Cnrc;f5hEHe:G0jgYd;vmxUb:j3bJnb;R2c5O:LuRugf;R3Yrj:DURTdb;qiCkJd:ANdidc;NOg9L:HLgh3;uGoIkd:epUokb;zLdLw:eaGBS;rcuQ6b:npT2md">
<div class="logo doodle"><a href="https://www.google.com/webhp?hl=fr&ictx=2&sa=X&ved=0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQPQgI" data-hveid="8"><img alt="Fêtes de fin d'année" height="33" src="/logos/doodles/2020/december-holidays-days-2-30-6753651837108830.5-s.png" title="Fêtes de fin d'année" width="92" border="0"></a></div>
<div class="RNNXgb" jsname="RNNXgb">
<div class="SDkEP">
<div class="iblpc" jsname="uFMOof">
<div class="hsuHs"><span class="wFncld z1asCe MZy1Rb"><svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
<path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
</svg></span></div>
</div>
<div jscontroller="iDPoPb" class="a4bIc" jsname="gLFyf" jsaction="h5M12e;input:d3sQLd;blur:jI3wzf">
<div class="pR49Ae gsfi" jsname="vdLsw"></div><input class="gLFyf gsfi" maxlength="2048" name="q" type="text" jsaction="paste:puy29d" aria-autocomplete="both" aria-haspopup="false" autocapitalize="off" autocomplete="off" autocorrect="off" role="combobox" spellcheck="false" title="Rechercher" value="javascript dom outline" aria-label="Rech." data-ved="0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ39UDCAo">
</div>
<div class="dRYYxd">
<div jscontroller="J5Ptqf" class="clear-button XoaYSb" jsname="RP0xob" aria-label="Effacer" role="button" jsaction="AVsnlb;rcuQ6b:npT2md" data-ved="0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ05YFCAs"> <span class="lBbtTb z1asCe rzyADb" jsname="itVqKe" tabindex="0"><svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
<path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path>
</svg></span> <span class="FqnKTc"></span> </div>
</div>
</div> <button class="Tg7LZd" jsname="Tg7LZd" aria-label="Recherche Google" type="submit" data-ved="0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ4dUDCAw">
<div class="FAuhyb"> <span class="z1asCe MZy1Rb"><svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
<path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
</svg></span> </div>
</button>
</div>
<div jscontroller="tg8oTe" class="UUbT9" style="display:none" jsname="UUbT9" jsaction="mouseout:ItzDCd;mouseleave:MWfikb;hBEIVb:nUZ9le;YMFC3:VKssTb">
<div class="RjPuVb" jsname="RjPuVb"></div>
<div class="aajZCb" jsname="aajZCb">
<div class="xtSCL"></div>
<ul class="erkvQe" jsname="erkvQe" role="listbox"></ul>
<li class="ynRric" id="ynRric" role="presentation"></li>
<li data-view-type="1" class="sbct" id="sbt" role="presentation">
<div class="jKWzZXdEJWi__suggestions-inner-container">
<div class="sbic"></div>
<div class="sbtc" role="option">
<div class="sbl1"><span></span></div>
<div class="sbl2"><span></span></div>
</div>
<div class="sbab">
<div class="sbai">Supprimer</div>
</div>
</div>
</li><a class="lh87ke" href="https://support.google.com/websearch/answer/106230?hl=fr" jsname="lh87ke">En savoir plus</a>
</div>
<div jsname="JUypV" jscontroller="IvlUe" class="JUypV" data-async-context="async_id:duf3-46;authority:0;card_id:;entry_point:0;feature_id:;ftoe:0;header:0;is_jobs_spam_form:0;open:0;preselect_answer_index:-1;suggestions:;suggestions_subtypes:;suggestions_types:;surface:0;title:;type:46">
<div jscontroller="xz7cCd" style="display:none" jsaction="rcuQ6b:npT2md"></div>
<div id="duf3-46" data-jiis="up" data-async-type="duffy3" data-async-context-required="type,open,feature_id,async_id,entry_point,authority,card_id,ftoe,title,header,suggestions,surface,suggestions_types,suggestions_subtypes,preselect_answer_index,is_jobs_spam_form" class="y yp" data-ved="0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ-0EIDQ"></div><a class="duf3 wrSo4 aciXEb" href="#" id="sbfblt" data-async-trigger="duf3-46" jsaction="async.u" data-ved="0ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQtw8IDg">Signaler des prédictions inappropriées</a>
</div>
</div>
</div>
<div style="background:url(/images/searchbox/desktop_searchbox_sprites302_hr.webp)"> </div>
</div>
</form>
</div>
<div class="DH7hPe"></div>
<div id="gac_scont"></div>
<div class="main" id="main">
<div id="easter-egg"></div><span class="kpshf line gsr bilit big mdm" style="display:none"></span>
<div id="cnt">
<div id="sfcnt">
<div class="dodTBe"></div>
</div>
<div></div>
<div id="dc"></div>
<style>
.iJddsb {
display: inline-block;
fill: currentColor
}
.iJddsb img,
.iJddsb svg {
display: block;
height: 100%;
width: 100%
}
.rIbAWc {
cursor: pointer;
display: inline-block
}
html:not(.zAoYTe) .hide-focus-ring {
outline: 0
}
.GshZze {
border: 1px solid transparent;
text-align: center;
border-radius: 2px;
line-height: 19px;
cursor: pointer;
margin-left: -1px;
padding: 4px 11px;
}
.GshZze:not(.hdtb-tl-sel):hover {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
transition: all 0.0s;
background-color: #f8f9fa;
background-image: linear-gradient(top, #f8f9fa, #f8f9fa);
border: 1px solid #dadce0;
color: #202124;
}
.GshZze:active,
.GshZze:not(.hdtb-tl-sel):hover:active {
background-color: #f8f9fa;
background-image: linear-gradient(top, #f8f9fa, #f8f9fa);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.pdswFd {
float: right;
position: relative;
z-index: 3;
right: 17px
}
.pdswFd .hdtb-mitem {
display: inline-block
}
.gTMtLb {
z-index: 1001;
position: absolute;
top: -1000px
}
.WE0UJf {
height: 33px;
margin-left: 180px;
}
body.vasq .WE0UJf {
height: 43px
}
.LHJvCe {
display: flex;
position: absolute;
top: 0;
transition: all 220ms ease-in-out;
color: #70757a;
justify-content: space-between;
min-width: 652px;
line-height: 33px
}
#result-stats {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding-top: 0;
padding-bottom: 0;
padding-right: 8px;
}
body.vasq .LHJvCe {
line-height: 43px
}
</style>
<div id="top_nav">
<div jscontroller="qik19b" jsdata="Z1JpA;;AOjZLw" jsaction="rcuQ6b:npT2md">
<h1 class="Uo8X3b">Modes de recherche</h1>
<div class="hdtbna" id="hdtb" role="navigation">
<div id="hdtbSum">
<div id="hdtb-s" style="white-space:nowrap">
<div id="hdtb-msb">
<div>
<div id="hdtb-msb-vis">
<div class="hdtb-mitem hdtb-msel hdtb-imb" aria-hidden="true"><span class="HF9Klc iJddsb" style="height:16px;width:16px"><svg focusable="false" viewbox="0 0 24 24">
<path fill="#34a853" d="M10 2v2a6 6 0 0 1 6 6h2a8 8 0 0 0-8-8"></path>
<path fill="#ea4335" d="M10 4V2a8 8 0 0 0-8 8h2c0-3.3 2.7-6 6-6"></path>
<path fill="#fbbc04" d="M4 10H2a8 8 0 0 0 8 8v-2c-3.3 0-6-2.69-6-6"></path>
<path fill="#4285f4" d="M22 20.59l-5.69-5.69A7.96 7.96 0 0 0 18 10h-2a6 6 0 0 1-6 6v2c1.85 0 3.52-.64 4.88-1.68l5.69 5.69L22 20.59"></path>
</svg></span>Tous</div>
<div class="hdtb-mitem hdtb-imb"><a class="hide-focus-ring" href="/search?q=javascript+dom+outline&hl=fr&source=lnms&tbm=isch&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ_AUoAXoECAoQAw"><span class="HF9Klc iJddsb" style="height:16px;width:16px"><svg focusable="false" viewbox="0 0 24 24">
<path d="M14 13l4 5H6l4-4 1.79 1.78L14 13zm-6.01-2.99A2 2 0 0 0 8 6a2 2 0 0 0-.01 4.01zM22 5v14a3 3 0 0 1-3 2.99H5c-1.64 0-3-1.36-3-3V5c0-1.64 1.36-3 3-3h14c1.65 0 3 1.36 3 3zm-2.01 0a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h7v-.01h7a1 1 0 0 0 1-1V5"></path>
</svg></span>Images</a></div>
<div class="hdtb-mitem hdtb-imb"><a class="hide-focus-ring" href="/search?q=javascript+dom+outline&hl=fr&source=lnms&tbm=vid&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ_AUoAnoECAoQBA"><span class="HF9Klc iJddsb" style="height:16px;width:16px"><svg focusable="false" viewbox="0 0 24 24">
<path d="M10 16.5l6-4.5-6-4.5v9zM5 20h14a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1zm14.5 2H5a3 3 0 0 1-3-3V4.4A2.4 2.4 0 0 1 4.4 2h15.2A2.4 2.4 0 0 1 22 4.4v15.1a2.5 2.5 0 0 1-2.5 2.5"></path>
</svg></span>Vidéos</a></div>
<div class="hdtb-mitem hdtb-imb"><a class="hide-focus-ring" href="/search?q=javascript+dom+outline&hl=fr&source=lnms&tbm=shop&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ_AUoA3oECAoQBQ"><span class="HF9Klc iJddsb" style="height:16px;width:16px"><svg focusable="false" viewbox="0 0 24 24">
<path d="M21.11 2.89A3.02 3.02 0 0 0 18.95 2h-5.8c-.81 0-1.58.31-2.16.89L7.25 6.63 2.9 10.98a3.06 3.06 0 0 0 0 4.32l5.79 5.8a3.05 3.05 0 0 0 4.32.01l8.09-8.1c.58-.58.9-1.34.9-2.16v-5.8c0-.81-.32-1.59-.89-2.16zM20 10.85c0 .28-.12.54-.32.74l-3.73 3.74-4.36 4.36c-.41.41-1.08.41-1.49 0l-2.89-2.9-2.9-2.9a1.06 1.06 0 0 1 0-1.49l8.1-8.1c.2-.2.46-.3.74-.3l5.8-.01A1.05 1.05 0 0 1 20 5.05v5.8zM16 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"></path>
</svg></span>Shopping</a></div>
<div class="hdtb-mitem hdtb-imb"><a class="hide-focus-ring" href="/search?q=javascript+dom+outline&hl=fr&source=lnms&tbm=nws&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ_AUoBHoECAoQBg"><span class="HF9Klc iJddsb" style="height:16px;width:16px"><svg focusable="false" viewbox="0 0 24 24">
<path d="M12 11h6v2h-6v-2zm-6 6h12v-2H6v2zm0-4h4V7H6v6zm16-7.22v12.44c0 1.54-1.34 2.78-3 2.78H5c-1.64 0-3-1.25-3-2.78V5.78C2 4.26 3.36 3 5 3h14c1.64 0 3 1.25 3 2.78zM19.99 12V5.78c0-.42-.46-.78-1-.78H5c-.54 0-1 .36-1 .78v12.44c0 .42.46.78 1 .78h14c.54 0 1-.36 1-.78V12zM12 9h6V7h-6v2"></path>
</svg></span>Actualités</a></div>
</div><span class="hdtb-mitem" jscontroller="fWEITb" jsaction="KyPa0e:Y0y4c">
<g-popup jsname="V68bde" jscontroller="NZI0Db" jsaction="A05xBd:IYtByb;" jsdata="mVjAjf;_;AOjZL0">
<div jsname="oYxtQd" class="rIbAWc hide-focus-ring" aria-expanded="false" aria-haspopup="true" role="button" tabindex="0" jsaction="WFrRFb;keydown:uYT2Vb">
<div class="hdtb-dd-b sqXXR"><span class="more-vert z1asCe SaPW2b" style="height:16px;line-height:16px;width:16px"><svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
<path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"></path>
</svg></span>Plus</div>
</div>
<div jsname="V68bde" class="EwsJzb sAKBe" style="display:none;z-index:1" id="_YSvNX5SMCoi5gwf1z4-ABQ17"></div>
</g-popup>
</span>
</div>
<div><span class="hdtb-mitem" jscontroller="fWEITb" jsaction="KyPa0e:Y0y4c">
<g-popup jsname="V68bde" jscontroller="NZI0Db" jsaction="A05xBd:IYtByb;" jsdata="mVjAjf;_;AOjZL0">
<div jsname="oYxtQd"><a class="hide-focus-ring hdtb-dd-b" aria-haspopup="true" role="button" jsaction="WFrRFb;keydown:uYT2Vb" href="/preferences" id="abar_button_opt">Paramètres</a></div>
<div jsname="V68bde" class="EwsJzb sAKBe" style="display:none;z-index:1" id="_YSvNX5SMCoi5gwf1z4-ABQ19"></div>
</g-popup>
</span>
<div class="GshZze hide-focus-ring" id="hdtb-tls" aria-controls="hdtbMenus" aria-expanded="false" role="button" tabindex="0" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ2x96BAgKEBg">Outils</div>
</div>
</div>
<ol class="pdswFd"></ol>
</div>
</div>
<div class="hdtb-td-c hdtb-td-h" id="hdtbMenus" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ3B96BAgKEBk"></div>
</div>
</div>
</div>
<div id="before-appbar"></div>
<div class="gTMtLb fp-nh" id="lb"></div>
<div class="appbar" id="appbar">
<div id="extabar">
<div style="position:relative">
<div jscontroller="hiU8Ie" class="WE0UJf" id="slim_appbar">
<div class="LHJvCe">
<div id="result-stats">Environ 1 160 000 résultats<nobr> (0,36 secondes) </nobr>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mw"></div>
<div id="atvcap"></div>
<div class="mw">
<div class="GyAeWb" id="rcnt">
<div id="bcenter">
<div class="col" style="width:0"></div>
</div>
<div class="col" style="width:0">
<div class="eIYMdc" id="center_col">
<style>
.ppoYTc {
margin: 7px 0 17px
}
a:hover h3.LC20lb {
text-decoration: underline
}
.LC20lb {
display: inline-block;
line-height: 1.3;
margin-bottom: 3px;
}
.DKV0Md {
padding-top: 4px;
padding-top: 4px;
}
.VjDLd .TieM1d .tjvcx,
.rhs-osrp .tjvcx,
.kno-kp .tjvcx,
.VjDLd .kp-wholepage-osrp .tjvcx,
#rhs .ss6qqb .tjvcx {
display: inline-block;
height: 19px;
overflow-y: hidden
}
.qzEoUe {
color: #202124;
white-space: nowrap
}
.dyjrff {
color: #5f6368
}
.B6fmyf {
position: absolute;
top: 0;
height: 0;
visibility: hidden;
white-space: nowrap
}
.eFM0qc {
display: inline-block;
padding-bottom: 1px;
padding-top: 1px;
padding-left: 2px;
visibility: visible
}
</style>
<div id="taw">
<div></div>
<div>
<div class="std ppoYTc card-section">Conseil : <a href="/search?q=javascript+dom+outline&hl=fr&lr=lang_fr&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQuAF6BAgKEDQ">Recherchez des résultats uniquement en <em>français</em></a>. Vous pouvez indiquer votre langue de recherche sur la page <a href="/preferences?hl=fr#languages" onmousedown="return rwt(this,'','','','','AOvVaw3QLuttcZlhepGL2SLvGqsQ','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQtwF6BAgKEDU','','',event)">Préférences</a>.</div>
</div>
<div id="tvcap"></div>
</div>
<div class="J9WfR eqAnXb" id="res" role="main">
<div id="topstuff"></div>
<div id="search">
<div data-hveid="CAoQNw" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQGnoECAoQNw">
<!--a-->
<h1 class="Uo8X3b">Résultats de recherche</h1>
<div eid="YSvNX5SMCoi5gwf1z4-ABQ" data-async-context="query:javascript%20dom%20outline" id="rso">
<div class="g">
<h2 class="Uo8X3b">Résultats Web</h2>
<!--m-->
<div class="rc" data-hveid="CAcQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAB6BAgHEAA">
<div class="yuRUbf"><a href="https://www.w3schools.com/jsref/prop_style_outline.asp" onmousedown="return rwt(this,'','','','','AOvVaw1TVW9Tr-OPnRTKcfh1fICI','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjAAegQIBxAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>HTML DOM Style outline Property - W3Schools</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.w3schools.com<span class="dyjrff qzEoUe"><span> › jsref › prop_...</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.w3schools.com<span class="dyjrff qzEoUe"><span> › jsref › prop_...</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b0" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wAHoECAcQBQ"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wAHoECAcQBg">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:B3A5912Hgm0J:https://www.w3schools.com/jsref/prop_style_outline.asp+&cd=1&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw1MZI5FatpIq1Saa2cXcAwu','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDAAegQIBxAH','','',event)"><span>En cache</span></a></li>
<li class="action-menu-item" role="menuitem"><a class="fl" href="/search?hl=fr&q=related:https://www.w3schools.com/jsref/prop_style_outline.asp+javascript+dom+outline&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQHzAAegQIBxAI"><span>Pages similaires</span></a></li>
</ol>
</div>
</span><a class="fl iUh30" href="https://translate.google.com/translate?hl=fr&sl=en&u=https://www.w3schools.com/jsref/prop_style_outline.asp&prev=search&pto=aue" onmousedown="return rwt(this,'','','','','AOvVaw1ggzd22FfOBaiMqaexf8qm','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7gEwAHoECAcQCg','','',event)"><span>Traduire cette page</span></a></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span>Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, <em>JavaScript</em>, SQL, PHP, Python, Bootstrap, Java ...</span></span></div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CAEQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAF6BAgBEAA">
<div class="yuRUbf"><a href="https://www.w3schools.com/jsref/prop_style_outlinestyle.asp" onmousedown="return rwt(this,'','','','','AOvVaw0MCnQm-5Yt5Nc9GdThWGox','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjABegQIARAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>HTML DOM Style outlineStyle Property - W3Schools</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.w3schools.com<span class="dyjrff qzEoUe"><span> › jsref › prop_...</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.w3schools.com<span class="dyjrff qzEoUe"><span> › jsref › prop_...</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b1" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wAXoECAEQBQ"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wAXoECAEQBg">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:wdrDfY_-JIAJ:https://www.w3schools.com/jsref/prop_style_outlinestyle.asp+&cd=2&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw0amFasePLWjqyQeliPoDx3','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDABegQIARAH','','',event)"><span>En cache</span></a></li>
<li class="action-menu-item" role="menuitem"><a class="fl" href="/search?hl=fr&q=related:https://www.w3schools.com/jsref/prop_style_outlinestyle.asp+javascript+dom+outline&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQHzABegQIARAI"><span>Pages similaires</span></a></li>
</ol>
</div>
</span><a class="fl iUh30" href="https://translate.google.com/translate?hl=fr&sl=en&u=https://www.w3schools.com/jsref/prop_style_outlinestyle.asp&prev=search&pto=aue" onmousedown="return rwt(this,'','','','','AOvVaw0fRYv98Hkniq8EBlCnuOXf','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7gEwAXoECAEQCg','','',event)"><span>Traduire cette page</span></a></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span>Example. Add a "solid" <em>outline</em> around a <div> element: <em>document</em>.<wbr>getElementById("myDiv").style.outlineStyle = "solid";. Try it Yourself » ...</span></span></div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CAMQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAJ6BAgDEAA">
<div class="yuRUbf"><a href="https://developer.mozilla.org/fr/docs/Web/CSS/outline-style" onmousedown="return rwt(this,'','','','','AOvVaw3QMYtUeCTpvcLxVdvCnRZW','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjACegQIAxAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>outline-style - CSS : Feuilles de style en cascade | MDN</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">developer.mozilla.org<span class="dyjrff qzEoUe"><span> › docs › Web › CSS › outline-style</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">developer.mozilla.org<span class="dyjrff qzEoUe"><span> › docs › Web › CSS › outline-style</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b2" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wAnoECAMQBw"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wAnoECAMQCA">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:yNPgmmPGUj8J:https://developer.mozilla.org/fr/docs/Web/CSS/outline-style+&cd=3&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw08Ov4JususkPbgpYe-yVsI','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDACegQIAxAJ','','',event)"><span>En cache</span></a></li>
<li class="action-menu-item" role="menuitem"><a class="fl" href="/search?hl=fr&q=related:https://developer.mozilla.org/fr/docs/Web/CSS/outline-style+javascript+dom+outline&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQHzACegQIAxAK"><span>Pages similaires</span></a></li>
</ol>
</div>
</span></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span class="f">14 août 2020 — </span><span>La bordure est dessinée comme si elle était gravée dans le <em>document</em>. ridge: La forme obtenue est opposée à groove : la bordure semble ...</span></span></div>
</div>
<div jscontroller="m6a0l" id="eob_15" jsdata="fxg5tf;;AOjZLs" jsaction="rcuQ6b:npT2md" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ2Z0BMAJ6BAgDEAw"></div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CAQQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAN6BAgEEAA">
<div class="yuRUbf"><a href="https://developer.mozilla.org/fr/docs/Web/CSS/outline" onmousedown="return rwt(this,'','','','','AOvVaw1D8jHP2lNhixw-Xn1YrsS6','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjADegQIBBAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>outline - CSS : Feuilles de style en cascade | MDN</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">developer.mozilla.org<span class="dyjrff qzEoUe"><span> › docs › Web › CSS › outline</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">developer.mozilla.org<span class="dyjrff qzEoUe"><span> › docs › Web › CSS › outline</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b3" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wA3oECAQQBw"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wA3oECAQQCA">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:y7txeqFgHfkJ:https://developer.mozilla.org/fr/docs/Web/CSS/outline+&cd=4&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw2mU7cVdSMWlm4wUyhzJ_r1','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDADegQIBBAJ','','',event)"><span>En cache</span></a></li>
<li class="action-menu-item" role="menuitem"><a class="fl" href="/search?hl=fr&q=related:https://developer.mozilla.org/fr/docs/Web/CSS/outline+javascript+dom+outline&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQHzADegQIBBAK"><span>Pages similaires</span></a></li>
</ol>
</div>
</span></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span class="f">3 juil. 2019 — </span><span>Accessibilité. Utiliser la propriété <em>outline</em> avec une valeur 0 ou none supprimera le style par défaut du navigateur pour le focus. Lorsqu'on ...</span></span></div>
</div>
<div jscontroller="m6a0l" id="eob_14" jsdata="fxg5tf;;AOjZLo" jsaction="rcuQ6b:npT2md" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ2Z0BMAN6BAgEEAw"></div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CAIQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAR6BAgCEAA">
<div class="yuRUbf"><a href="https://www.geeksforgeeks.org/html-dom-style-outline-property/" onmousedown="return rwt(this,'','','','','AOvVaw2nSnWhYsPoQNWv0j9d9eqt','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjAEegQIAhAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>HTML | DOM Style outline Property - GeeksforGeeks</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.geeksforgeeks.org<span class="dyjrff qzEoUe"><span> › html-dom...</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.geeksforgeeks.org<span class="dyjrff qzEoUe"><span> › html-dom...</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b4" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wBHoECAIQBQ"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wBHoECAIQBg">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:KSv8VP1nJWgJ:https://www.geeksforgeeks.org/html-dom-style-outline-property/+&cd=5&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw2gOlAafLk4T4uJSsDVukq3','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDAEegQIAhAH','','',event)"><span>En cache</span></a></li>
</ol>
</div>
</span><a class="fl iUh30" href="https://translate.google.com/translate?hl=fr&sl=en&u=https://www.geeksforgeeks.org/html-dom-style-outline-property/&prev=search&pto=aue" onmousedown="return rwt(this,'','','','','AOvVaw2mSMRk8O3TrZjztChTiBIY','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7gEwBHoECAIQCQ','','',event)"><span>Traduire cette page</span></a></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span class="f">1 août 2019 — </span><span>h2 ><em>DOM</em> Style <em>outline</em> Property</ h2 >. </ div >. < script >. function myGeeks() {. <em>document</em>.getElementById("container").style.<em>outline</em>.</span></span></div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CAYQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAV6BAgGEAA">
<div class="yuRUbf"><a href="http://www.java2s.com/Tutorials/Javascript/Buildin_Object/Style/Style_outline.htm" onmousedown="return rwt(this,'','','','','AOvVaw2Z29QqT5LwtMhPJiwykISc','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjAFegQIBhAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>Javascript Reference - HTML DOM Style outline Property</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.java2s.com<span class="dyjrff qzEoUe"><span> › Buildin_Object</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.java2s.com<span class="dyjrff qzEoUe"><span> › Buildin_Object</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b5" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wBXoECAYQBQ"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wBXoECAYQBg">
<li class="action-menu-item" role="menuitem"><a class="fl" href="http://webcache.googleusercontent.com/search?q=cache:YIjkSjVRne4J:www.java2s.com/Tutorials/Javascript/Buildin_Object/Style/Style_outline.htm+&cd=6&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw2_tqDBBYpC6C_WfEkasDbG','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDAFegQIBhAH','','',event)"><span>En cache</span></a></li>
</ol>
</div>
</span><a class="fl iUh30" href="https://translate.google.com/translate?hl=fr&sl=en&u=http://www.java2s.com/Tutorials/Javascript/Buildin_Object/Style/Style_outline.htm&prev=search&pto=aue" onmousedown="return rwt(this,'','','','','AOvVaw1xEKfGnvGBzNwk8QEllAVg','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7gEwBXoECAYQCQ','','',event)"><span>Traduire cette page</span></a></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span><em>Javascript</em> Reference - HTML <em>DOM</em> Style <em>outline</em> Property. Back to Style ↑. The <em>outline</em> property sets or gets all the <em>outline</em> properties, in a shorthand form. ?</span></span></div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CAUQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAZ6BAgFEAA">
<div class="yuRUbf"><a href="https://github.com/andrewchilds/jQuery.DomOutline" onmousedown="return rwt(this,'','','','','AOvVaw0mwWFOT1otf0trBhUfFJwb','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjAGegQIBRAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>andrewchilds/jQuery.DomOutline: Firebug/Dev Tools ... - GitHub</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">github.com<span class="dyjrff qzEoUe"><span> › andrewchilds › jQuery...</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">github.com<span class="dyjrff qzEoUe"><span> › andrewchilds › jQuery...</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b6" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wBnoECAUQBQ"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wBnoECAUQBg">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:tXb7GaOw37IJ:https://github.com/andrewchilds/jQuery.DomOutline+&cd=7&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw2uvbC5ZGeWqRbS3lrINwow','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDAGegQIBRAH','','',event)"><span>En cache</span></a></li>
<li class="action-menu-item" role="menuitem"><a class="fl" href="/search?hl=fr&q=related:https://github.com/andrewchilds/jQuery.DomOutline+javascript+dom+outline&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQHzAGegQIBRAI"><span>Pages similaires</span></a></li>
</ol>
</div>
</span><a class="fl iUh30" href="https://translate.google.com/translate?hl=fr&sl=en&u=https://github.com/andrewchilds/jQuery.DomOutline&prev=search&pto=aue" onmousedown="return rwt(this,'','','','','AOvVaw0633zYE_F4Up0Zb2ZD1sMw','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7gEwBnoECAUQCg','','',event)"><span>Traduire cette page</span></a></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span><em>Dom Outline</em>. Firebug/Dev Tools-like <em>DOM outline</em> implementation using jQuery. Example Usage. let myExampleClickHandler ...</span></span></div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CAgQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAd6BAgIEAA">
<div class="yuRUbf"><a href="https://www.modpagespeed.com/doc/filter-js-outline" onmousedown="return rwt(this,'','','','','AOvVaw2Cbxua3jggse0gJ1FLySLq','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjAHegQICBAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>Outline JavaScript</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.modpagespeed.com<span class="dyjrff qzEoUe"><span> › doc › fil...</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">www.modpagespeed.com<span class="dyjrff qzEoUe"><span> › doc › fil...</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b7" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wB3oECAgQBQ"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wB3oECAgQBg">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:cw2_geihhR8J:https://www.modpagespeed.com/doc/filter-js-outline+&cd=8&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw2QhuW-r6G00H8tmC2gpuut','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDAHegQICBAH','','',event)"><span>En cache</span></a></li>
</ol>
</div>
</span><a class="fl iUh30" href="https://translate.google.com/translate?hl=fr&sl=en&u=https://www.modpagespeed.com/doc/filter-js-outline&prev=search&pto=aue" onmousedown="return rwt(this,'','','','','AOvVaw3tvkdFv_I5FcfEWBlkxoQT','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7gEwB3oECAgQCQ','','',event)"><span>Traduire cette page</span></a></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span>The '<em>Outline JavaScript</em>' filter is considered low risk. However, <em>JavaScript</em> can be written that walks the <em>DOM</em> looking for <script> tags with certain syntax. Such ...</span></span></div>
</div>
</div>
<!--n-->
</div><span id="fld"></span>
<style>
#brs {
margin-bottom: 28px
}
.mmxugd {
color: #202124;
height: auto;
padding-bottom: 8px
}
.brs_col {
font-size: 14px;
margin-top: -1px;
padding-bottom: 1px;
display: inline-block;
line-height: 20px;
vertical-align: top;
max-width: 100%;
box-sizing: border-box;
}
#brs .nVcaUb {
margin: 0;
clear: both
}
#brs a {
padding: 3px 32px 3px 0;
display: inline-block;
float: left;
text-decoration: none
}
g-section-with-header {
display: block;
margin: 0 0 40px 0
}
.e2BEnf {
font-size: 20px;
line-height: 1.3;
}
.U7izfe {
padding: 0 0px 12px
}
.AaVjTc a:link {
display: block;
color: #4285f4;
font-weight: normal
}
.AaVjTc td {
padding: 0;
text-align: center
}
.d6cvqb {
font-weight: bold
}
.YyVfkd {
color: rgba(0, 0, 0, .87);
font-weight: normal;
}
.SJajHc {
background: url(/images/nav_logo299.webp) no-repeat;
overflow: hidden;
background-position: 0 0;
height: 40px;
display: block
}
.NVbCr {
cursor: pointer
}
</style>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CA4QAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAh6BAgOEAA">
<div class="yuRUbf"><a href="https://stackoverflow.com/questions/17079591/using-jquery-for-dom-outlining" onmousedown="return rwt(this,'','','','','AOvVaw1OZb4Am7Fpnp-8sIN0FgEg','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjAIegQIDhAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>Using jQuery for Dom Outlining. - Stack Overflow</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">stackoverflow.com<span class="dyjrff qzEoUe"><span> › questions › usi...</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">stackoverflow.com<span class="dyjrff qzEoUe"><span> › questions › usi...</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b8" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wCHoECA4QBQ"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wCHoECA4QBg">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:G9ZZT-nQ2cAJ:https://stackoverflow.com/questions/17079591/using-jquery-for-dom-outlining+&cd=9&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw2kIiYE73SiuJm_zZ6j_DTE','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDAIegQIDhAH','','',event)"><span>En cache</span></a></li>
</ol>
</div>
</span><a class="fl iUh30" href="https://translate.google.com/translate?hl=fr&sl=en&u=https://stackoverflow.com/questions/17079591/using-jquery-for-dom-outlining&prev=search&pto=aue" onmousedown="return rwt(this,'','','','','AOvVaw29VN4dkHTosp3h_SvY37IX','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7gEwCHoECA4QCQ','','',event)"><span>Traduire cette page</span></a></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span class="f">13 juin 2013 — </span><span>Because you are stoping highlighting as soon as it starts $(<em>document</em>).ready(<wbr>function() { let myExampleClickHandler = function (element) ...</span></span>
<div class="fG8Fp uo4vr"><span>3 réponses</span></div>
<div data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqwJ6BAgMEAA">
<div class="P1usbc">
<div class="VNLkW">
<div class="i4vd5e">
<div class="wrBvFf"><a class="fl" href="https://stackoverflow.com/questions/63574812/remove-border-outline-from-vis-timeline" onmousedown="return rwt(this,'','','','','AOvVaw3Ulo_Md_jkG3y_T14rdBWJ','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQrAIoAHoECAwQAQ','','',event)"><span>Remove border/<em>outline</em> from vis-timeline - Stack ...</span></a></div>
</div>
<div class="G1Rrjc">
<div class="wrBvFf"><span>1 réponse</span></div>
</div>
<div class="G1Rrjc">
<div class="wrBvFf"><span>25 août 2020</span></div>
</div>
</div>
<div class="VNLkW">
<div class="i4vd5e">
<div class="wrBvFf"><a class="fl" href="https://stackoverflow.com/questions/26872182/create-a-hierarchical-object-from-html-outline" onmousedown="return rwt(this,'','','','','AOvVaw1_-1kobNeVdTmTtcZaHlMz','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQrAIoAXoECAwQAg','','',event)"><span>Create a hierarchical object from HTML <em>outline</em> ...</span></a></div>
</div>
<div class="G1Rrjc">
<div class="wrBvFf"><span>1 réponse</span></div>
</div>
<div class="G1Rrjc">
<div class="wrBvFf"><span>11 nov. 2014</span></div>
</div>
</div>
<div class="VNLkW">
<div class="i4vd5e">
<div class="wrBvFf"><a class="fl" href="https://stackoverflow.com/questions/55739721/how-can-i-achieve-a-consistent-focus-outline-color-with-shadow-dom-web-component" onmousedown="return rwt(this,'','','','','AOvVaw3VfyNLFICWS7A22s-NgItW','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQrAIoAnoECAwQAw','','',event)"><span>How can I achieve a consistent focus <em>outline</em> color with ...</span></a></div>
</div>
<div class="G1Rrjc">
<div class="wrBvFf"><span>1 réponse</span></div>
</div>
<div class="G1Rrjc">
<div class="wrBvFf"><span>18 avr. 2019</span></div>
</div>
</div>
<div class="VNLkW">
<div class="i4vd5e">
<div class="wrBvFf"><a class="fl" href="https://stackoverflow.com/questions/24999080/how-to-remove-all-input-outline" onmousedown="return rwt(this,'','','','','AOvVaw3ycyL4_tJe0lb9VxYxz9Qf','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQrAIoA3oECAwQBA','','',event)"><span>How to remove all input <em>outline</em>? - Stack Overflow</span></a></div>
</div>
<div class="G1Rrjc">
<div class="wrBvFf"><span>2 réponses</span></div>
</div>
<div class="G1Rrjc">
<div class="wrBvFf"><span>28 juil. 2014</span></div>
</div>
</div>
<div class="k6DEPe">
<div class="i4vd5e">
<div class="wrBvFf"><a class="fl" href="/search?q=javascript+dom+outline+site:stackoverflow.com&hl=fr&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQrQIoBHoECAwQBQ"><span>Autres résultats sur stackoverflow.com</span></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div class="rc" data-hveid="CAsQAA" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFSgAMAl6BAgLEAA">
<div class="yuRUbf"><a href="https://masna.ir/school/cssref/pr_outline-style.html" onmousedown="return rwt(this,'','','','','AOvVaw2ZpcwBm8i12Qi4U4c4afo2','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQFjAJegQICxAC','','',event)"><br>
<h3 class="LC20lb DKV0Md"><span>CSS outline-style Property</span></h3>
<div class="TbwUpd NJjxre"><cite class="iUh30 Zu0yb qLRx3b tjvcx">masna.ir<span class="dyjrff qzEoUe"><span> › school › cssref › pr_outli...</span></span></cite></div>
</a>
<div class="B6fmyf">
<div class="TbwUpd"><cite class="iUh30 Zu0yb qLRx3b tjvcx">masna.ir<span class="dyjrff qzEoUe"><span> › school › cssref › pr_outli...</span></span></cite></div>
<div class="eFM0qc"><span>
<div jscontroller="hiU8Ie" class="action-menu"><a class="GHDvEf" href="#" id="am-b9" aria-label="Options relatives au résultat" aria-expanded="false" aria-haspopup="true" role="button" jsaction="PZcoEd;keydown:wU6FVd;keypress:uWmNaf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7B0wCXoECAsQBQ"><span class="mn-dwn-arw"></span></a>
<ol class="action-menu-panel" role="menu" tabindex="-1" jsaction="keydown:Xiq7wd;mouseover:pKPowd;mouseout:O9bKS" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQqR8wCXoECAsQBg">
<li class="action-menu-item" role="menuitem"><a class="fl" href="https://webcache.googleusercontent.com/search?q=cache:UuicUrQ5AQQJ:https://masna.ir/school/cssref/pr_outline-style.html+&cd=10&hl=fr&ct=clnk&gl=fr" onmousedown="return rwt(this,'','','','','AOvVaw3jyscamfIdA1sotnvo9LOf','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQIDAJegQICxAH','','',event)"><span>En cache</span></a></li>
</ol>
</div>
</span><a class="fl iUh30" href="https://translate.google.com/translate?hl=fr&sl=en&u=https://masna.ir/school/cssref/pr_outline-style.html&prev=search&pto=aue" onmousedown="return rwt(this,'','','','','AOvVaw2c9ZaWnHJ4rXk4YQLFAof0','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ7gEwCXoECAsQCQ','','',event)"><span>Traduire cette page</span></a></div>
</div>
</div>
<div class="IsZvec">
<div><span class="aCOpRe"><span>... element "stand out". The <em>outline</em>-style property specifies the style of an <em>outline</em>. ... <em>JavaScript</em> syntax: object.style. ... HTML <em>DOM</em> reference: outlineStyle property.</span></span></div>
</div>
</div>
<!--n-->
</div>
</div>
<!--z-->
</div>
</div>
</div>
<div id="bottomads"></div>
<div id="botstuff">
<div data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQCHoECAoQOA">
<div id="bres"></div>
<div id="brs" data-hveid="CAkQAA">
<g-section-with-header style="margin-bottom:0">
<div class="e2BEnf U7izfe">
<h3 class="mmxugd" style="text-align:left" aria-level="2" role="heading"><span>Recherches associées à javascript dom outline</span></h3>
</div>
<div class="card-section">
<div class="brs_col">
<p class="nVcaUb"><a href="/search?hl=fr&q=outline+css&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ1QIoAHoECAkQAQ">outline <b>css</b></a></p>
<p class="nVcaUb"><a href="/search?hl=fr&q=outline-radius&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ1QIoAXoECAkQAg"><b>outline-radius</b></a></p>
<p class="nVcaUb"><a href="/search?hl=fr&q=outline-offset&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ1QIoAnoECAkQAw"><b>outline-offset</b></a></p>
<p class="nVcaUb"><a href="/search?hl=fr&q=css+outline+bottom&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ1QIoA3oECAkQBA"><b>css</b> outline <b>bottom</b></a></p>
</div>
<div class="brs_col">
<p class="nVcaUb"><a href="/search?hl=fr&q=outline:+none&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ1QIoBHoECAkQBQ"><b>outline: none</b></a></p>
<p class="nVcaUb"><a href="/search?hl=fr&q=outline+css+chrome&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ1QIoBXoECAkQBg">outline <b>css chrome</b></a></p>
<p class="nVcaUb"><a href="/search?hl=fr&q=custom+outline&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ1QIoBnoECAkQBw"><b>custom</b> outline</a></p>
<p class="nVcaUb"><a href="/search?hl=fr&q=input+outline&sa=X&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ1QIoB3oECAkQCA"><b>input</b> outline</a></p>
</div>
</div>
</g-section-with-header>
</div>
</div>
</div>
<div>
<div jscontroller="iD8Yk" style="display:none" jsaction="rcuQ6b:npT2md"></div>
<div id="foot" role="navigation"><span id="xjs">
<div>
<h1 class="Uo8X3b">Navigation par pages</h1>
<table class="AaVjTc" style="border-collapse:collapse;text-align:left;margin:30px auto 30px" role="presentation">
<tr jsname="TeSSVd" valign="top">
<td class="d6cvqb"><span class="SJajHc" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-24px 0;width:28px"></span></td>
<td class="YyVfkd"><span class="SJajHc" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-53px 0;width:20px"></span>1</td>
<td><a aria-label="Page 2" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=10&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChA9"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>2</a></td>
<td><a aria-label="Page 3" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=20&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChA_"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>3</a></td>
<td><a aria-label="Page 4" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=30&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChBB"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>4</a></td>
<td><a aria-label="Page 5" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=40&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChBD"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>5</a></td>
<td><a aria-label="Page 6" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=50&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChBF"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>6</a></td>
<td><a aria-label="Page 7" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=60&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChBH"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>7</a></td>
<td><a aria-label="Page 8" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=70&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChBJ"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>8</a></td>
<td><a aria-label="Page 9" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=80&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChBL"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>9</a></td>
<td><a aria-label="Page 10" class="fl" href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=90&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8tMDegQIChBN"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-74px 0;width:20px"></span>10</a></td>
<td aria-level="3" class="d6cvqb" role="heading"><a href="/search?q=javascript+dom+outline&hl=fr&ei=YSvNX5SMCoi5gwf1z4-ABQ&start=10&sa=N&ved=2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8NMDegQIChBP" id="pnnext" style="text-align:left"><span class="SJajHc NVbCr" style="background:url(/images/nav_logo299.webp) no-repeat;background-position:-96px 0;width:71px"></span><span style="display:block;margin-left:53px">Suivant</span></a></td>
</tr>
</table>
</div>
</span>
<div id="gfn"></div><span id="fvf"></span>
</div>
</div>
</div>
</div>
<div jscontroller="TxZWcc" class="col rhscol" data-fe5="false" jsaction="rcuQ6b:npT2md" jsdata="MdeVKb;;AOjZMA" id="rhs" data-hveid="CAoQUA">
<span class="rhstc4 rhstc5" style="display:none"></span>
</div>
<div style="clear:both"></div>
</div>
<div id="bfoot"> <span style="display:none"><span jscontroller="NBZ7u" style="display:none" data-du="1" data-lhe="1" data-lve="1" jsaction="rcuQ6b:npT2md"></span></span></div>
</div>
<style>
.TCIIWe {}
.f6F9Be {
position: absolute;
bottom: 0;
width: 100%
}
.fbar a,
#fsettl {
text-decoration: none;
white-space: nowrap
}
.fbar {
margin-left: -27px
}
.Fx4vi {
padding-left: 27px;
margin: 0 !important
}
#fsl {
white-space: nowrap
}
.f6F9Be {
background: #f2f2f2;
line-height: 40px;
min-width: 1261px;
border-top: 1px solid #dadce0;
}
.B4GxFc {
margin-left: 180px
}
.fbar p,
.fbar a,
#fsettl,
#fsett a {
color: #70757a
}
.fbar a:hover,
#fsett a:hover {
color: #3c4043
}
.fbar {
font-size: 14px
}
.b0KoTc {
color: rgba(0, 0, 0, .54);
padding-left: 27px
}
.b2hzT {
border-bottom: 1px solid #dadce0
}
.Q8LRLc {
font-size: 15px
}
.yLngu {
border-radius: 100%;
display: inline-block;
height: 10px;
margin: 6px 4px 9px 0;
vertical-align: middle;
width: 10px
}
#Wprf1b {
color: #3c4043;
font-weight: bold
}
.smiUbb img {
margin-right: 4px
}
.smiUbb a,
.M6hT6 #swml a {
text-decoration: none
}
.smiUbb {
margin-left: 180px;
line-height: 15px;
color: #70757a;
}
.smiUbb a,
#swml a {
color: #70757a
}
.smiUbb a:hover,
#swml a:hover {
color: #3c4043
}
#swml a {
display: inline-block
}
#swml {
display: inline-block;
margin-left: 13px;
padding-left: 16px;
border-left: 1px solid #dadce0
}
</style>
<div role="contentinfo" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQpyp6BAgKEFE">
<h1 class="Uo8X3b">Liens de pied de page</h1>
<div id="footcnt">
<div class="TCIIWe" style="height:82px" id="fbarcnt">
<div class="f6F9Be mSAqxd" id="fbar">
<div class="fbar b2hzT">
<div class="b0KoTc B4GxFc"><span class="Q8LRLc">France</span>
<div class="fbar smiUbb" style="visibility:hidden" id="swml"><span class="yLngu" id="EcMbV"></span><span id="Wprf1b"></span><span id="VdZal"> - </span><span id="gc9Iqb"></span><a id="BHDErf"></a><span id="K3p6wc"> - </span><a href="#" id="eqQYZc" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQpLkCegQIChBS"></a><span id="swml_lmsep"> - </span><a href="https://support.google.com/websearch?p=ws_settings_location&hl=fr" onmousedown="return rwt(this,'','','','','AOvVaw0FgjJ0XolW61iYtgvekTsB','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQty56BAgKEFM','','',event)">En savoir plus</a></div>
</div>
</div>
<div class="fbar"><span class="B4GxFc"><span id="fsl"><a class="Fx4vi" href="https://support.google.com/websearch/?p=ws_results_help&hl=fr&fg=1" onmousedown="return rwt(this,'','','','','AOvVaw08omJs_VZA3Jnh50bSknCF','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8KwCegQIChBU','','',event)">Aide</a><a href="#" class="Fx4vi" data-bucket="websearch" id="dk2qOd" target="_blank" jsaction="gf.sf" data-ved="2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQLnoECAoQVQ">Envoyer des commentaires</a><a class="Fx4vi" href="https://policies.google.com/privacy?hl=fr&fg=1" onmousedown="return rwt(this,'','','','','AOvVaw1cyVXVfbTG33UksaKoWppf','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8awCegQIChBW','','',event)">Confidentialité</a><a class="Fx4vi" href="https://policies.google.com/terms?hl=fr&fg=1" onmousedown="return rwt(this,'','','','','AOvVaw1Er7CrTYe9jUU1w1E9jA_N','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ8qwCegQIChBX','','',event)">Conditions</a><a class="Fx4vi" href="https://support.google.com/websearch?p=fr_consumer_info&hl=fr&fg=1" onmousedown="return rwt(this,'','','','','AOvVaw2Hh0QSd76Waw_vDJR_K2KN','','2ahUKEwjUwK2ZhrrtAhWI3OAKHfXnA1AQ9NMDegQIChBY','','',event)">Info consommateurs</a></span></span></div>
</div>
</div>
</div>
</div>
<div id="_YSvNX5SMCoi5gwf1z4-ABQ23"></div>
<style id="dstyle">
#logocont {
z-index: 1;
padding-left: 16px;
padding-right: 10px;
margin-top: -2px;
padding-top: 7px
}
#logocont.ddl {
padding-top: 3px
}
.big #logocont {
padding-left: 16px;
padding-right: 12px
}
#searchform #logocont {
left: 0;
padding: 7px 28px 0 24px;
position: absolute;
top: 4px
}
.sbibod {
background-color: #fff;
height: 44px;
vertical-align: top;
border: 1px solid #dfe1e5;
border-radius: 8px;
box-shadow: none;
transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.lst {
border: 0;
margin-top: 5px;
margin-bottom: 0
}
.lst:focus {
outline: none
}
#lst-ib {
color: #000
}
.lst-c {
overflow: hidden
}
.lst-c .sbib_a {
background: #fff
}
#gs_st0 {
line-height: 44px;
padding: 0 8px;
margin-top: -1px;
position: static
}
.srp #gs_st0 {
padding: 0 2px 0 8px
}
.gsfs {
font: 17px arial, sans-serif