mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-21 04:02:53 +00:00
39 lines
955 B
Plaintext
39 lines
955 B
Plaintext
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`tables doesnt wrap nested tables 1`] = `
|
||
|
"
|
||
|
<section class=\\"mw-parser-output\\">
|
||
|
<div class=\\"noresize\\"><table>
|
||
|
<tbody>
|
||
|
<tr><th>table table table</th></tr>
|
||
|
<tr><td><table><tbody><tr><th>table table table</th></tr></tbody></table></td><td></td></tr>
|
||
|
</tbody>
|
||
|
</table></div>
|
||
|
|
||
|
</section>
|
||
|
"
|
||
|
`;
|
||
|
|
||
|
exports[`tables wraps multiple table with div 1`] = `
|
||
|
"
|
||
|
<section class=\\"mw-parser-output\\">
|
||
|
<div class=\\"noresize\\"><table>
|
||
|
<tbody><tr><th>table table table</th></tr></tbody>
|
||
|
</table></div>
|
||
|
<div class=\\"noresize\\"><table>
|
||
|
<tbody><tr><th>table table table</th></tr></tbody>
|
||
|
</table></div>
|
||
|
</section>
|
||
|
"
|
||
|
`;
|
||
|
|
||
|
exports[`tables wraps table with div 1`] = `
|
||
|
"
|
||
|
<section class=\\"mw-parser-output\\">
|
||
|
<div class=\\"noresize\\"><table>
|
||
|
<tbody><tr><th>table table table</th></tr></tbody>
|
||
|
</table></div>
|
||
|
</section>
|
||
|
"
|
||
|
`;
|