Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: LayoutTests/fast/css-intrinsic-dimensions/tables.html

Issue 1293793007: Unprefix min-content, max-content, fit-content (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: unprefix more tests Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css-intrinsic-dimensions/tables.html
diff --git a/LayoutTests/fast/css-intrinsic-dimensions/tables.html b/LayoutTests/fast/css-intrinsic-dimensions/tables.html
index f4b1998bb315c0a8627390bcd30495df48d10d88..428e82d8dd78f3f6fd72681df35c09e01a88fb79 100644
--- a/LayoutTests/fast/css-intrinsic-dimensions/tables.html
+++ b/LayoutTests/fast/css-intrinsic-dimensions/tables.html
@@ -25,21 +25,21 @@ td {
</td>
</table>
-<table style="width: -webkit-min-content" data-expected-width=86>
+<table style="width: min-content" data-expected-width=86>
<td data-expected-width=62>
<div class="child"></div>
<div class="child"></div>
</td>
</table>
-<table style="width: -webkit-max-content" data-expected-width=140>
+<table style="width: max-content" data-expected-width=140>
<td data-expected-width=116>
<div class="child"></div>
<div class="child"></div>
</td>
</table>
-<table style="width: -webkit-fit-content" data-expected-width=140>
+<table style="width: fit-content" data-expected-width=140>
<td data-expected-width=116>
<div class="child"></div>
<div class="child"></div>
@@ -47,7 +47,7 @@ td {
</table>
<div style="width: 140px">
- <table style="width: -webkit-fit-content" data-expected-width=140>
+ <table style="width: fit-content" data-expected-width=140>
<td data-expected-width=116>
<div class="child"></div>
<div class="child"></div>
@@ -56,7 +56,7 @@ td {
</div>
<div style="width: 139px">
- <table style="width: -webkit-fit-content" data-expected-width=139>
+ <table style="width: fit-content" data-expected-width=139>
<td data-expected-width=115>
<div class="child"></div>
<div class="child"></div>
@@ -80,21 +80,21 @@ td {
</td>
</table>
-<table class="collapse" style="width: -webkit-min-content" data-expected-width=62>
+<table class="collapse" style="width: min-content" data-expected-width=62>
<td data-expected-width=57>
<div class="child"></div>
<div class="child"></div>
</td>
</table>
-<table class="collapse" style="width: -webkit-max-content" data-expected-width=116>
+<table class="collapse" style="width: max-content" data-expected-width=116>
<td data-expected-width=111>
<div class="child"></div>
<div class="child"></div>
</td>
</table>
-<table class="collapse" style="width: -webkit-fit-content" data-expected-width=116>
+<table class="collapse" style="width: fit-content" data-expected-width=116>
<td data-expected-width=111>
<div class="child"></div>
<div class="child"></div>
@@ -102,7 +102,7 @@ td {
</table>
<div style="width: 116px">
- <table class="collapse" style="width: -webkit-fit-content" data-expected-width=116>
+ <table class="collapse" style="width: fit-content" data-expected-width=116>
<td data-expected-width=111>
<div class="child"></div>
<div class="child"></div>
@@ -111,7 +111,7 @@ td {
</div>
<div style="width: 115px">
- <table class="collapse" style="width: -webkit-fit-content" data-expected-width=115>
+ <table class="collapse" style="width: fit-content" data-expected-width=115>
<td data-expected-width=110>
<div class="child"></div>
<div class="child"></div>
@@ -131,4 +131,4 @@ td {
<script src="../../resources/check-layout.js"></script>
<script>
checkLayout('table');
-</script>
+</script>

Powered by Google App Engine
This is Rietveld 408576698