tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

sanitizer-default-config.tentative.html (29686B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <script src="./support/util.js"></script>
      7 </head>
      8 <body>
      9 <script>
     10 test(() => {
     11  let d = new Sanitizer();
     12 
     13  // https://wicg.github.io/sanitizer-api/#built-in-safe-default-configuration
     14  //
     15  assert_config(d.get(), {
     16    "elements": [
     17      {
     18        "name": "math",
     19        "namespace": "http://www.w3.org/1998/Math/MathML",
     20        "attributes": []
     21      },
     22      {
     23        "name": "merror",
     24        "namespace": "http://www.w3.org/1998/Math/MathML",
     25        "attributes": []
     26      },
     27      {
     28        "name": "mfrac",
     29        "namespace": "http://www.w3.org/1998/Math/MathML",
     30        "attributes": []
     31      },
     32      {
     33        "name": "mi",
     34        "namespace": "http://www.w3.org/1998/Math/MathML",
     35        "attributes": []
     36      },
     37      {
     38        "name": "mmultiscripts",
     39        "namespace": "http://www.w3.org/1998/Math/MathML",
     40        "attributes": []
     41      },
     42      {
     43        "name": "mn",
     44        "namespace": "http://www.w3.org/1998/Math/MathML",
     45        "attributes": []
     46      },
     47      {
     48        "name": "mo",
     49        "namespace": "http://www.w3.org/1998/Math/MathML",
     50        "attributes": [
     51          {
     52            "name": "fence",
     53            "namespace": null
     54          },
     55          {
     56            "name": "form",
     57            "namespace": null
     58          },
     59          {
     60            "name": "largeop",
     61            "namespace": null
     62          },
     63          {
     64            "name": "lspace",
     65            "namespace": null
     66          },
     67          {
     68            "name": "maxsize",
     69            "namespace": null
     70          },
     71          {
     72            "name": "minsize",
     73            "namespace": null
     74          },
     75          {
     76            "name": "movablelimits",
     77            "namespace": null
     78          },
     79          {
     80            "name": "rspace",
     81            "namespace": null
     82          },
     83          {
     84            "name": "separator",
     85            "namespace": null
     86          },
     87          {
     88            "name": "stretchy",
     89            "namespace": null
     90          },
     91          {
     92            "name": "symmetric",
     93            "namespace": null
     94          }
     95        ]
     96      },
     97      {
     98        "name": "mover",
     99        "namespace": "http://www.w3.org/1998/Math/MathML",
    100        "attributes": [
    101          {
    102            "name": "accent",
    103            "namespace": null
    104          }
    105        ]
    106      },
    107      {
    108        "name": "mpadded",
    109        "namespace": "http://www.w3.org/1998/Math/MathML",
    110        "attributes": [
    111          {
    112            "name": "depth",
    113            "namespace": null
    114          },
    115          {
    116            "name": "height",
    117            "namespace": null
    118          },
    119          {
    120            "name": "lspace",
    121            "namespace": null
    122          },
    123          {
    124            "name": "voffset",
    125            "namespace": null
    126          },
    127          {
    128            "name": "width",
    129            "namespace": null
    130          }
    131        ]
    132      },
    133      {
    134        "name": "mphantom",
    135        "namespace": "http://www.w3.org/1998/Math/MathML",
    136        "attributes": []
    137      },
    138      {
    139        "name": "mprescripts",
    140        "namespace": "http://www.w3.org/1998/Math/MathML",
    141        "attributes": []
    142      },
    143      {
    144        "name": "mroot",
    145        "namespace": "http://www.w3.org/1998/Math/MathML",
    146        "attributes": []
    147      },
    148      {
    149        "name": "mrow",
    150        "namespace": "http://www.w3.org/1998/Math/MathML",
    151        "attributes": []
    152      },
    153      {
    154        "name": "ms",
    155        "namespace": "http://www.w3.org/1998/Math/MathML",
    156        "attributes": []
    157      },
    158      {
    159        "name": "mspace",
    160        "namespace": "http://www.w3.org/1998/Math/MathML",
    161        "attributes": [
    162          {
    163            "name": "depth",
    164            "namespace": null
    165          },
    166          {
    167            "name": "height",
    168            "namespace": null
    169          },
    170          {
    171            "name": "width",
    172            "namespace": null
    173          }
    174        ]
    175      },
    176      {
    177        "name": "msqrt",
    178        "namespace": "http://www.w3.org/1998/Math/MathML",
    179        "attributes": []
    180      },
    181      {
    182        "name": "mstyle",
    183        "namespace": "http://www.w3.org/1998/Math/MathML",
    184        "attributes": []
    185      },
    186      {
    187        "name": "msub",
    188        "namespace": "http://www.w3.org/1998/Math/MathML",
    189        "attributes": []
    190      },
    191      {
    192        "name": "msubsup",
    193        "namespace": "http://www.w3.org/1998/Math/MathML",
    194        "attributes": []
    195      },
    196      {
    197        "name": "msup",
    198        "namespace": "http://www.w3.org/1998/Math/MathML",
    199        "attributes": []
    200      },
    201      {
    202        "name": "mtable",
    203        "namespace": "http://www.w3.org/1998/Math/MathML",
    204        "attributes": []
    205      },
    206      {
    207        "name": "mtd",
    208        "namespace": "http://www.w3.org/1998/Math/MathML",
    209        "attributes": [
    210          {
    211            "name": "columnspan",
    212            "namespace": null
    213          },
    214          {
    215            "name": "rowspan",
    216            "namespace": null
    217          }
    218        ]
    219      },
    220      {
    221        "name": "mtext",
    222        "namespace": "http://www.w3.org/1998/Math/MathML",
    223        "attributes": []
    224      },
    225      {
    226        "name": "mtr",
    227        "namespace": "http://www.w3.org/1998/Math/MathML",
    228        "attributes": []
    229      },
    230      {
    231        "name": "munder",
    232        "namespace": "http://www.w3.org/1998/Math/MathML",
    233        "attributes": [
    234          {
    235            "name": "accentunder",
    236            "namespace": null
    237          }
    238        ]
    239      },
    240      {
    241        "name": "munderover",
    242        "namespace": "http://www.w3.org/1998/Math/MathML",
    243        "attributes": [
    244          {
    245            "name": "accent",
    246            "namespace": null
    247          },
    248          {
    249            "name": "accentunder",
    250            "namespace": null
    251          }
    252        ]
    253      },
    254      {
    255        "name": "semantics",
    256        "namespace": "http://www.w3.org/1998/Math/MathML",
    257        "attributes": []
    258      },
    259      {
    260        "name": "a",
    261        "namespace": "http://www.w3.org/1999/xhtml",
    262        "attributes": [
    263          {
    264            "name": "href",
    265            "namespace": null
    266          },
    267          {
    268            "name": "hreflang",
    269            "namespace": null
    270          },
    271          {
    272            "name": "type",
    273            "namespace": null
    274          }
    275        ]
    276      },
    277      {
    278        "name": "abbr",
    279        "namespace": "http://www.w3.org/1999/xhtml",
    280        "attributes": []
    281      },
    282      {
    283        "name": "address",
    284        "namespace": "http://www.w3.org/1999/xhtml",
    285        "attributes": []
    286      },
    287      {
    288        "name": "article",
    289        "namespace": "http://www.w3.org/1999/xhtml",
    290        "attributes": []
    291      },
    292      {
    293        "name": "aside",
    294        "namespace": "http://www.w3.org/1999/xhtml",
    295        "attributes": []
    296      },
    297      {
    298        "name": "b",
    299        "namespace": "http://www.w3.org/1999/xhtml",
    300        "attributes": []
    301      },
    302      {
    303        "name": "bdi",
    304        "namespace": "http://www.w3.org/1999/xhtml",
    305        "attributes": []
    306      },
    307      {
    308        "name": "bdo",
    309        "namespace": "http://www.w3.org/1999/xhtml",
    310        "attributes": []
    311      },
    312      {
    313        "name": "blockquote",
    314        "namespace": "http://www.w3.org/1999/xhtml",
    315        "attributes": [
    316          {
    317            "name": "cite",
    318            "namespace": null
    319          }
    320        ]
    321      },
    322      {
    323        "name": "body",
    324        "namespace": "http://www.w3.org/1999/xhtml",
    325        "attributes": []
    326      },
    327      {
    328        "name": "br",
    329        "namespace": "http://www.w3.org/1999/xhtml",
    330        "attributes": []
    331      },
    332      {
    333        "name": "caption",
    334        "namespace": "http://www.w3.org/1999/xhtml",
    335        "attributes": []
    336      },
    337      {
    338        "name": "cite",
    339        "namespace": "http://www.w3.org/1999/xhtml",
    340        "attributes": []
    341      },
    342      {
    343        "name": "code",
    344        "namespace": "http://www.w3.org/1999/xhtml",
    345        "attributes": []
    346      },
    347      {
    348        "name": "col",
    349        "namespace": "http://www.w3.org/1999/xhtml",
    350        "attributes": [
    351          {
    352            "name": "span",
    353            "namespace": null
    354          }
    355        ]
    356      },
    357      {
    358        "name": "colgroup",
    359        "namespace": "http://www.w3.org/1999/xhtml",
    360        "attributes": [
    361          {
    362            "name": "span",
    363            "namespace": null
    364          }
    365        ]
    366      },
    367      {
    368        "name": "data",
    369        "namespace": "http://www.w3.org/1999/xhtml",
    370        "attributes": [
    371          {
    372            "name": "value",
    373            "namespace": null
    374          }
    375        ]
    376      },
    377      {
    378        "name": "dd",
    379        "namespace": "http://www.w3.org/1999/xhtml",
    380        "attributes": []
    381      },
    382      {
    383        "name": "del",
    384        "namespace": "http://www.w3.org/1999/xhtml",
    385        "attributes": [
    386          {
    387            "name": "cite",
    388            "namespace": null
    389          },
    390          {
    391            "name": "datetime",
    392            "namespace": null
    393          }
    394        ]
    395      },
    396      {
    397        "name": "dfn",
    398        "namespace": "http://www.w3.org/1999/xhtml",
    399        "attributes": []
    400      },
    401      {
    402        "name": "div",
    403        "namespace": "http://www.w3.org/1999/xhtml",
    404        "attributes": []
    405      },
    406      {
    407        "name": "dl",
    408        "namespace": "http://www.w3.org/1999/xhtml",
    409        "attributes": []
    410      },
    411      {
    412        "name": "dt",
    413        "namespace": "http://www.w3.org/1999/xhtml",
    414        "attributes": []
    415      },
    416      {
    417        "name": "em",
    418        "namespace": "http://www.w3.org/1999/xhtml",
    419        "attributes": []
    420      },
    421      {
    422        "name": "figcaption",
    423        "namespace": "http://www.w3.org/1999/xhtml",
    424        "attributes": []
    425      },
    426      {
    427        "name": "figure",
    428        "namespace": "http://www.w3.org/1999/xhtml",
    429        "attributes": []
    430      },
    431      {
    432        "name": "footer",
    433        "namespace": "http://www.w3.org/1999/xhtml",
    434        "attributes": []
    435      },
    436      {
    437        "name": "h1",
    438        "namespace": "http://www.w3.org/1999/xhtml",
    439        "attributes": []
    440      },
    441      {
    442        "name": "h2",
    443        "namespace": "http://www.w3.org/1999/xhtml",
    444        "attributes": []
    445      },
    446      {
    447        "name": "h3",
    448        "namespace": "http://www.w3.org/1999/xhtml",
    449        "attributes": []
    450      },
    451      {
    452        "name": "h4",
    453        "namespace": "http://www.w3.org/1999/xhtml",
    454        "attributes": []
    455      },
    456      {
    457        "name": "h5",
    458        "namespace": "http://www.w3.org/1999/xhtml",
    459        "attributes": []
    460      },
    461      {
    462        "name": "h6",
    463        "namespace": "http://www.w3.org/1999/xhtml",
    464        "attributes": []
    465      },
    466      {
    467        "name": "head",
    468        "namespace": "http://www.w3.org/1999/xhtml",
    469        "attributes": []
    470      },
    471      {
    472        "name": "header",
    473        "namespace": "http://www.w3.org/1999/xhtml",
    474        "attributes": []
    475      },
    476      {
    477        "name": "hgroup",
    478        "namespace": "http://www.w3.org/1999/xhtml",
    479        "attributes": []
    480      },
    481      {
    482        "name": "hr",
    483        "namespace": "http://www.w3.org/1999/xhtml",
    484        "attributes": []
    485      },
    486      {
    487        "name": "html",
    488        "namespace": "http://www.w3.org/1999/xhtml",
    489        "attributes": []
    490      },
    491      {
    492        "name": "i",
    493        "namespace": "http://www.w3.org/1999/xhtml",
    494        "attributes": []
    495      },
    496      {
    497        "name": "ins",
    498        "namespace": "http://www.w3.org/1999/xhtml",
    499        "attributes": [
    500          {
    501            "name": "cite",
    502            "namespace": null
    503          },
    504          {
    505            "name": "datetime",
    506            "namespace": null
    507          }
    508        ]
    509      },
    510      {
    511        "name": "kbd",
    512        "namespace": "http://www.w3.org/1999/xhtml",
    513        "attributes": []
    514      },
    515      {
    516        "name": "li",
    517        "namespace": "http://www.w3.org/1999/xhtml",
    518        "attributes": [
    519          {
    520            "name": "value",
    521            "namespace": null
    522          }
    523        ]
    524      },
    525      {
    526        "name": "main",
    527        "namespace": "http://www.w3.org/1999/xhtml",
    528        "attributes": []
    529      },
    530      {
    531        "name": "mark",
    532        "namespace": "http://www.w3.org/1999/xhtml",
    533        "attributes": []
    534      },
    535      {
    536        "name": "menu",
    537        "namespace": "http://www.w3.org/1999/xhtml",
    538        "attributes": []
    539      },
    540      {
    541        "name": "nav",
    542        "namespace": "http://www.w3.org/1999/xhtml",
    543        "attributes": []
    544      },
    545      {
    546        "name": "ol",
    547        "namespace": "http://www.w3.org/1999/xhtml",
    548        "attributes": [
    549          {
    550            "name": "reversed",
    551            "namespace": null
    552          },
    553          {
    554            "name": "start",
    555            "namespace": null
    556          },
    557          {
    558            "name": "type",
    559            "namespace": null
    560          }
    561        ]
    562      },
    563      {
    564        "name": "p",
    565        "namespace": "http://www.w3.org/1999/xhtml",
    566        "attributes": []
    567      },
    568      {
    569        "name": "pre",
    570        "namespace": "http://www.w3.org/1999/xhtml",
    571        "attributes": []
    572      },
    573      {
    574        "name": "q",
    575        "namespace": "http://www.w3.org/1999/xhtml",
    576        "attributes": []
    577      },
    578      {
    579        "name": "rp",
    580        "namespace": "http://www.w3.org/1999/xhtml",
    581        "attributes": []
    582      },
    583      {
    584        "name": "rt",
    585        "namespace": "http://www.w3.org/1999/xhtml",
    586        "attributes": []
    587      },
    588      {
    589        "name": "ruby",
    590        "namespace": "http://www.w3.org/1999/xhtml",
    591        "attributes": []
    592      },
    593      {
    594        "name": "s",
    595        "namespace": "http://www.w3.org/1999/xhtml",
    596        "attributes": []
    597      },
    598      {
    599        "name": "samp",
    600        "namespace": "http://www.w3.org/1999/xhtml",
    601        "attributes": []
    602      },
    603      {
    604        "name": "search",
    605        "namespace": "http://www.w3.org/1999/xhtml",
    606        "attributes": []
    607      },
    608      {
    609        "name": "section",
    610        "namespace": "http://www.w3.org/1999/xhtml",
    611        "attributes": []
    612      },
    613      {
    614        "name": "small",
    615        "namespace": "http://www.w3.org/1999/xhtml",
    616        "attributes": []
    617      },
    618      {
    619        "name": "span",
    620        "namespace": "http://www.w3.org/1999/xhtml",
    621        "attributes": []
    622      },
    623      {
    624        "name": "strong",
    625        "namespace": "http://www.w3.org/1999/xhtml",
    626        "attributes": []
    627      },
    628      {
    629        "name": "sub",
    630        "namespace": "http://www.w3.org/1999/xhtml",
    631        "attributes": []
    632      },
    633      {
    634        "name": "sup",
    635        "namespace": "http://www.w3.org/1999/xhtml",
    636        "attributes": []
    637      },
    638      {
    639        "name": "table",
    640        "namespace": "http://www.w3.org/1999/xhtml",
    641        "attributes": []
    642      },
    643      {
    644        "name": "tbody",
    645        "namespace": "http://www.w3.org/1999/xhtml",
    646        "attributes": []
    647      },
    648      {
    649        "name": "td",
    650        "namespace": "http://www.w3.org/1999/xhtml",
    651        "attributes": [
    652          {
    653            "name": "colspan",
    654            "namespace": null
    655          },
    656          {
    657            "name": "headers",
    658            "namespace": null
    659          },
    660          {
    661            "name": "rowspan",
    662            "namespace": null
    663          }
    664        ]
    665      },
    666      {
    667        "name": "tfoot",
    668        "namespace": "http://www.w3.org/1999/xhtml",
    669        "attributes": []
    670      },
    671      {
    672        "name": "th",
    673        "namespace": "http://www.w3.org/1999/xhtml",
    674        "attributes": [
    675          {
    676            "name": "abbr",
    677            "namespace": null
    678          },
    679          {
    680            "name": "colspan",
    681            "namespace": null
    682          },
    683          {
    684            "name": "headers",
    685            "namespace": null
    686          },
    687          {
    688            "name": "rowspan",
    689            "namespace": null
    690          },
    691          {
    692            "name": "scope",
    693            "namespace": null
    694          }
    695        ]
    696      },
    697      {
    698        "name": "thead",
    699        "namespace": "http://www.w3.org/1999/xhtml",
    700        "attributes": []
    701      },
    702      {
    703        "name": "time",
    704        "namespace": "http://www.w3.org/1999/xhtml",
    705        "attributes": [
    706          {
    707            "name": "datetime",
    708            "namespace": null
    709          }
    710        ]
    711      },
    712      {
    713        "name": "title",
    714        "namespace": "http://www.w3.org/1999/xhtml",
    715        "attributes": []
    716      },
    717      {
    718        "name": "tr",
    719        "namespace": "http://www.w3.org/1999/xhtml",
    720        "attributes": []
    721      },
    722      {
    723        "name": "u",
    724        "namespace": "http://www.w3.org/1999/xhtml",
    725        "attributes": []
    726      },
    727      {
    728        "name": "ul",
    729        "namespace": "http://www.w3.org/1999/xhtml",
    730        "attributes": []
    731      },
    732      {
    733        "name": "var",
    734        "namespace": "http://www.w3.org/1999/xhtml",
    735        "attributes": []
    736      },
    737      {
    738        "name": "wbr",
    739        "namespace": "http://www.w3.org/1999/xhtml",
    740        "attributes": []
    741      },
    742      {
    743        "name": "a",
    744        "namespace": "http://www.w3.org/2000/svg",
    745        "attributes": [
    746          {
    747            "name": "href",
    748            "namespace": null
    749          },
    750          {
    751            "name": "hreflang",
    752            "namespace": null
    753          },
    754          {
    755            "name": "type",
    756            "namespace": null
    757          }
    758        ]
    759      },
    760      {
    761        "name": "circle",
    762        "namespace": "http://www.w3.org/2000/svg",
    763        "attributes": [
    764          {
    765            "name": "cx",
    766            "namespace": null
    767          },
    768          {
    769            "name": "cy",
    770            "namespace": null
    771          },
    772          {
    773            "name": "pathLength",
    774            "namespace": null
    775          },
    776          {
    777            "name": "r",
    778            "namespace": null
    779          }
    780        ]
    781      },
    782      {
    783        "name": "defs",
    784        "namespace": "http://www.w3.org/2000/svg",
    785        "attributes": []
    786      },
    787      {
    788        "name": "desc",
    789        "namespace": "http://www.w3.org/2000/svg",
    790        "attributes": []
    791      },
    792      {
    793        "name": "ellipse",
    794        "namespace": "http://www.w3.org/2000/svg",
    795        "attributes": [
    796          {
    797            "name": "cx",
    798            "namespace": null
    799          },
    800          {
    801            "name": "cy",
    802            "namespace": null
    803          },
    804          {
    805            "name": "pathLength",
    806            "namespace": null
    807          },
    808          {
    809            "name": "rx",
    810            "namespace": null
    811          },
    812          {
    813            "name": "ry",
    814            "namespace": null
    815          }
    816        ]
    817      },
    818      {
    819        "name": "foreignObject",
    820        "namespace": "http://www.w3.org/2000/svg",
    821        "attributes": [
    822          {
    823            "name": "height",
    824            "namespace": null
    825          },
    826          {
    827            "name": "width",
    828            "namespace": null
    829          },
    830          {
    831            "name": "x",
    832            "namespace": null
    833          },
    834          {
    835            "name": "y",
    836            "namespace": null
    837          }
    838        ]
    839      },
    840      {
    841        "name": "g",
    842        "namespace": "http://www.w3.org/2000/svg",
    843        "attributes": []
    844      },
    845      {
    846        "name": "line",
    847        "namespace": "http://www.w3.org/2000/svg",
    848        "attributes": [
    849          {
    850            "name": "pathLength",
    851            "namespace": null
    852          },
    853          {
    854            "name": "x1",
    855            "namespace": null
    856          },
    857          {
    858            "name": "x2",
    859            "namespace": null
    860          },
    861          {
    862            "name": "y1",
    863            "namespace": null
    864          },
    865          {
    866            "name": "y2",
    867            "namespace": null
    868          }
    869        ]
    870      },
    871      {
    872        "name": "marker",
    873        "namespace": "http://www.w3.org/2000/svg",
    874        "attributes": [
    875          {
    876            "name": "markerHeight",
    877            "namespace": null
    878          },
    879          {
    880            "name": "markerUnits",
    881            "namespace": null
    882          },
    883          {
    884            "name": "markerWidth",
    885            "namespace": null
    886          },
    887          {
    888            "name": "orient",
    889            "namespace": null
    890          },
    891          {
    892            "name": "preserveAspectRatio",
    893            "namespace": null
    894          },
    895          {
    896            "name": "refX",
    897            "namespace": null
    898          },
    899          {
    900            "name": "refY",
    901            "namespace": null
    902          },
    903          {
    904            "name": "viewBox",
    905            "namespace": null
    906          }
    907        ]
    908      },
    909      {
    910        "name": "metadata",
    911        "namespace": "http://www.w3.org/2000/svg",
    912        "attributes": []
    913      },
    914      {
    915        "name": "path",
    916        "namespace": "http://www.w3.org/2000/svg",
    917        "attributes": [
    918          {
    919            "name": "d",
    920            "namespace": null
    921          },
    922          {
    923            "name": "pathLength",
    924            "namespace": null
    925          }
    926        ]
    927      },
    928      {
    929        "name": "polygon",
    930        "namespace": "http://www.w3.org/2000/svg",
    931        "attributes": [
    932          {
    933            "name": "pathLength",
    934            "namespace": null
    935          },
    936          {
    937            "name": "points",
    938            "namespace": null
    939          }
    940        ]
    941      },
    942      {
    943        "name": "polyline",
    944        "namespace": "http://www.w3.org/2000/svg",
    945        "attributes": [
    946          {
    947            "name": "pathLength",
    948            "namespace": null
    949          },
    950          {
    951            "name": "points",
    952            "namespace": null
    953          }
    954        ]
    955      },
    956      {
    957        "name": "rect",
    958        "namespace": "http://www.w3.org/2000/svg",
    959        "attributes": [
    960          {
    961            "name": "height",
    962            "namespace": null
    963          },
    964          {
    965            "name": "pathLength",
    966            "namespace": null
    967          },
    968          {
    969            "name": "rx",
    970            "namespace": null
    971          },
    972          {
    973            "name": "ry",
    974            "namespace": null
    975          },
    976          {
    977            "name": "width",
    978            "namespace": null
    979          },
    980          {
    981            "name": "x",
    982            "namespace": null
    983          },
    984          {
    985            "name": "y",
    986            "namespace": null
    987          }
    988        ]
    989      },
    990      {
    991        "name": "svg",
    992        "namespace": "http://www.w3.org/2000/svg",
    993        "attributes": [
    994          {
    995            "name": "height",
    996            "namespace": null
    997          },
    998          {
    999            "name": "preserveAspectRatio",
   1000            "namespace": null
   1001          },
   1002          {
   1003            "name": "viewBox",
   1004            "namespace": null
   1005          },
   1006          {
   1007            "name": "width",
   1008            "namespace": null
   1009          },
   1010          {
   1011            "name": "x",
   1012            "namespace": null
   1013          },
   1014          {
   1015            "name": "y",
   1016            "namespace": null
   1017          }
   1018        ]
   1019      },
   1020      {
   1021        "name": "text",
   1022        "namespace": "http://www.w3.org/2000/svg",
   1023        "attributes": [
   1024          {
   1025            "name": "dx",
   1026            "namespace": null
   1027          },
   1028          {
   1029            "name": "dy",
   1030            "namespace": null
   1031          },
   1032          {
   1033            "name": "lengthAdjust",
   1034            "namespace": null
   1035          },
   1036          {
   1037            "name": "rotate",
   1038            "namespace": null
   1039          },
   1040          {
   1041            "name": "textLength",
   1042            "namespace": null
   1043          },
   1044          {
   1045            "name": "x",
   1046            "namespace": null
   1047          },
   1048          {
   1049            "name": "y",
   1050            "namespace": null
   1051          }
   1052        ]
   1053      },
   1054      {
   1055        "name": "textPath",
   1056        "namespace": "http://www.w3.org/2000/svg",
   1057        "attributes": [
   1058          {
   1059            "name": "lengthAdjust",
   1060            "namespace": null
   1061          },
   1062          {
   1063            "name": "method",
   1064            "namespace": null
   1065          },
   1066          {
   1067            "name": "path",
   1068            "namespace": null
   1069          },
   1070          {
   1071            "name": "side",
   1072            "namespace": null
   1073          },
   1074          {
   1075            "name": "spacing",
   1076            "namespace": null
   1077          },
   1078          {
   1079            "name": "startOffset",
   1080            "namespace": null
   1081          },
   1082          {
   1083            "name": "textLength",
   1084            "namespace": null
   1085          }
   1086        ]
   1087      },
   1088      {
   1089        "name": "title",
   1090        "namespace": "http://www.w3.org/2000/svg",
   1091        "attributes": []
   1092      },
   1093      {
   1094        "name": "tspan",
   1095        "namespace": "http://www.w3.org/2000/svg",
   1096        "attributes": [
   1097          {
   1098            "name": "dx",
   1099            "namespace": null
   1100          },
   1101          {
   1102            "name": "dy",
   1103            "namespace": null
   1104          },
   1105          {
   1106            "name": "lengthAdjust",
   1107            "namespace": null
   1108          },
   1109          {
   1110            "name": "rotate",
   1111            "namespace": null
   1112          },
   1113          {
   1114            "name": "textLength",
   1115            "namespace": null
   1116          },
   1117          {
   1118            "name": "x",
   1119            "namespace": null
   1120          },
   1121          {
   1122            "name": "y",
   1123            "namespace": null
   1124          }
   1125        ]
   1126      }
   1127    ],
   1128    "attributes": [
   1129      {
   1130        "name": "alignment-baseline",
   1131        "namespace": null
   1132      },
   1133      {
   1134        "name": "baseline-shift",
   1135        "namespace": null
   1136      },
   1137      {
   1138        "name": "clip-path",
   1139        "namespace": null
   1140      },
   1141      {
   1142        "name": "clip-rule",
   1143        "namespace": null
   1144      },
   1145      {
   1146        "name": "color",
   1147        "namespace": null
   1148      },
   1149      {
   1150        "name": "color-interpolation",
   1151        "namespace": null
   1152      },
   1153      {
   1154        "name": "cursor",
   1155        "namespace": null
   1156      },
   1157      {
   1158        "name": "dir",
   1159        "namespace": null
   1160      },
   1161      {
   1162        "name": "direction",
   1163        "namespace": null
   1164      },
   1165      {
   1166        "name": "display",
   1167        "namespace": null
   1168      },
   1169      {
   1170        "name": "displaystyle",
   1171        "namespace": null
   1172      },
   1173      {
   1174        "name": "dominant-baseline",
   1175        "namespace": null
   1176      },
   1177      {
   1178        "name": "fill",
   1179        "namespace": null
   1180      },
   1181      {
   1182        "name": "fill-opacity",
   1183        "namespace": null
   1184      },
   1185      {
   1186        "name": "fill-rule",
   1187        "namespace": null
   1188      },
   1189      {
   1190        "name": "font-family",
   1191        "namespace": null
   1192      },
   1193      {
   1194        "name": "font-size",
   1195        "namespace": null
   1196      },
   1197      {
   1198        "name": "font-size-adjust",
   1199        "namespace": null
   1200      },
   1201      {
   1202        "name": "font-stretch",
   1203        "namespace": null
   1204      },
   1205      {
   1206        "name": "font-style",
   1207        "namespace": null
   1208      },
   1209      {
   1210        "name": "font-variant",
   1211        "namespace": null
   1212      },
   1213      {
   1214        "name": "font-weight",
   1215        "namespace": null
   1216      },
   1217      {
   1218        "name": "lang",
   1219        "namespace": null
   1220      },
   1221      {
   1222        "name": "letter-spacing",
   1223        "namespace": null
   1224      },
   1225      {
   1226        "name": "marker-end",
   1227        "namespace": null
   1228      },
   1229      {
   1230        "name": "marker-mid",
   1231        "namespace": null
   1232      },
   1233      {
   1234        "name": "marker-start",
   1235        "namespace": null
   1236      },
   1237      {
   1238        "name": "mathbackground",
   1239        "namespace": null
   1240      },
   1241      {
   1242        "name": "mathcolor",
   1243        "namespace": null
   1244      },
   1245      {
   1246        "name": "mathsize",
   1247        "namespace": null
   1248      },
   1249      {
   1250        "name": "opacity",
   1251        "namespace": null
   1252      },
   1253      {
   1254        "name": "paint-order",
   1255        "namespace": null
   1256      },
   1257      {
   1258        "name": "pointer-events",
   1259        "namespace": null
   1260      },
   1261      {
   1262        "name": "scriptlevel",
   1263        "namespace": null
   1264      },
   1265      {
   1266        "name": "shape-rendering",
   1267        "namespace": null
   1268      },
   1269      {
   1270        "name": "stop-color",
   1271        "namespace": null
   1272      },
   1273      {
   1274        "name": "stop-opacity",
   1275        "namespace": null
   1276      },
   1277      {
   1278        "name": "stroke",
   1279        "namespace": null
   1280      },
   1281      {
   1282        "name": "stroke-dasharray",
   1283        "namespace": null
   1284      },
   1285      {
   1286        "name": "stroke-dashoffset",
   1287        "namespace": null
   1288      },
   1289      {
   1290        "name": "stroke-linecap",
   1291        "namespace": null
   1292      },
   1293      {
   1294        "name": "stroke-linejoin",
   1295        "namespace": null
   1296      },
   1297      {
   1298        "name": "stroke-miterlimit",
   1299        "namespace": null
   1300      },
   1301      {
   1302        "name": "stroke-opacity",
   1303        "namespace": null
   1304      },
   1305      {
   1306        "name": "stroke-width",
   1307        "namespace": null
   1308      },
   1309      {
   1310        "name": "text-anchor",
   1311        "namespace": null
   1312      },
   1313      {
   1314        "name": "text-decoration",
   1315        "namespace": null
   1316      },
   1317      {
   1318        "name": "text-overflow",
   1319        "namespace": null
   1320      },
   1321      {
   1322        "name": "text-rendering",
   1323        "namespace": null
   1324      },
   1325      {
   1326        "name": "title",
   1327        "namespace": null
   1328      },
   1329      {
   1330        "name": "transform",
   1331        "namespace": null
   1332      },
   1333      {
   1334        "name": "transform-origin",
   1335        "namespace": null
   1336      },
   1337      {
   1338        "name": "unicode-bidi",
   1339        "namespace": null
   1340      },
   1341      {
   1342        "name": "vector-effect",
   1343        "namespace": null
   1344      },
   1345      {
   1346        "name": "visibility",
   1347        "namespace": null
   1348      },
   1349      {
   1350        "name": "white-space",
   1351        "namespace": null
   1352      },
   1353      {
   1354        "name": "word-spacing",
   1355        "namespace": null
   1356      },
   1357      {
   1358        "name": "writing-mode",
   1359        "namespace": null
   1360      }
   1361    ],
   1362    "comments": false,
   1363    "dataAttributes": false
   1364  })
   1365 }, "Get the expected default config")
   1366 </script>
   1367 </body>
   1368 </html>