mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-19 03:10:47 +00:00
e42b235669
Depends-on: Ia271a57776e6f38384c5855727ab82fd7af83241 Bug: T330527 Change-Id: I756f8e1bcd86867bee52962a0d1c2dbb34ca75eb
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>
|
|
"
|
|
`;
|