mediawiki-skins-Vector/tests/jest/skins.vector.js/__snapshots__/tables.test.js.snap
bwang 711f67ce00 Avoid wrapping floated tables using computed styles
Bug: T366314
Change-Id: I71657b7f1f26bcf52f5ade5b7668955a1f4df24b
2024-06-07 16:49:30 +00:00

77 lines
2 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`tables doesnt wrap floated tables 1`] = `
"
<table class=\\"wikitable\\" style=\\"float:right\\">
<tbody>
<tr><th>table table table</th></tr>
</tbody>
</table>
"
`;
exports[`tables doesnt wrap nested tables 1`] = `
"
<section class=\\"mw-parser-output\\">
<div class=\\"noresize\\"><table class=\\"wikitable\\">
<tbody>
<tr><th>table table table</th></tr>
<tr><td><table class=\\"wikitable\\"><tbody><tr><th>table table table</th></tr></tbody></table></td><td></td></tr>
</tbody>
</table></div>
</section>
"
`;
exports[`tables doesnt wrap tables that are already wrapped 1`] = `
"
<div class=\\"mw-parser-output\\">
<div class=\\"noresize\\">
<table class=\\"wikitable\\">
<tbody>
<tr><th>table table table</th></tr>
</tbody>
</table>
</div>
</div>
"
`;
exports[`tables doesnt wrap tables that are not wikitables 1`] = `
"
<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>
"
`;
exports[`tables wraps multiple table with div 1`] = `
"
<section class=\\"mw-parser-output\\">
<div class=\\"noresize\\"><table class=\\"wikitable\\">
<tbody><tr><th>table table table</th></tr></tbody>
</table></div>
<div class=\\"noresize\\"><table class=\\"wikitable\\">
</table></div><div class=\\"noresize\\"><table class=\\"wikitable\\">
<tbody><tr><th>table table table</th></tr></tbody>
</table></div>
<div class=\\"noresize\\"><table class=\\"wikitable\\">
<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 class=\\"wikitable\\">
<tbody><tr><th>table table table</th></tr></tbody>
</table></div>
</section>
"
`;