MozReview-Commit-ID: 61LyyLfZYj5

--HG--
extra : rebase_source : 64185061a731759a038f3df1e836cf1e4b0ddf5f
This commit is contained in:
Emilio Cobos Álvarez 2017-06-12 01:05:22 +02:00
Родитель 573dec8ba1
Коммит 11d7654c6d
2 изменённых файлов: 34 добавлений и 0 удалений

Просмотреть файл

@ -254,6 +254,7 @@ skip-if = android_version == '18' #debug-only failure; timed out #Android 4.3 aw
[test_redundant_font_download.html]
support-files = redundant_font_download.sjs
[test_rem_unit.html]
[test_restyle_table_wrapper.html]
[test_restyles_in_smil_animation.html]
skip-if = toolkit == 'android' # bug 1328522
[test_root_node_display.html]

Просмотреть файл

@ -0,0 +1,33 @@
<!doctype html>
<meta charset="utf-8">
<title>
Test for bug 1371955: We don't incorrectly think that a table wrapper style
is the main table element style.
</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
/* Test implicitly ::before and ::after too */
span::before, span::after {
content: "";
display: table;
}
</style>
<table id="realTable" style="margin: 10px"></table>
<span id="spanTable" style="display: table; padding: 10px;"></span>
<script>
SimpleTest.waitForExplicitFinish();
const utils = SpecialPowers.getDOMWindowUtils(window);
document.documentElement.offsetTop;
for (const element of [realTable, spanTable]) {
const previousReflowCount = utils.framesReflowed;
const previousRestyleGeneration = utils.restyleGeneration;
element.style.color = "blue";
document.documentElement.offsetTop;
isnot(previousRestyleGeneration, utils.restyleGeneration,
"We should have restyled");
is(previousReflowCount, utils.framesReflowed,
"We shouldn't have reflowed");
}
SimpleTest.finish();
</script>