Bug 1475385 - Unprefix -moz-column-* in w3c-submitted reftests. r=dholbert

Differential Revision: https://phabricator.services.mozilla.com/D2112

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Ting-Yu Lin 2018-07-13 15:57:41 +00:00
Родитель ae6bb80dd4
Коммит 3eb470a022
4 изменённых файлов: 10 добавлений и 10 удалений

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

@ -10,10 +10,10 @@
html,body {
color:black; background-color:white; font-size:16px; padding:0; margin:0;
}
.colset {
-moz-column-count: 3;
-moz-column-gap: 0;
column-count: 3;
column-gap: 0;
border: solid silver;
width: 9em;
}

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

@ -12,10 +12,10 @@
html,body {
color:black; background-color:white; font-size:16px; padding:0; margin:0;
}
.colset {
-moz-column-count: 3;
-moz-column-gap: 0;
column-count: 3;
column-gap: 0;
border: solid silver;
width: 9em;
}

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

@ -13,9 +13,9 @@
* { margin: 0; }
div {
border: double blue 12px;
-moz-column-count:2;
-moz-column-gap:0;
-moz-column-fill: balance;
column-count:2;
column-gap:0;
column-fill: balance;
height: 150%;
}
div > p {

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

@ -23,6 +23,6 @@ fi
rsync -avz --delete --filter=". ./sync-tests-filter" "$MOZTREE"/layout/reftests/w3c-css/submitted/ ./
sed -i -e 's/^\(\(fails\|needs-focus\|random\|skip\|asserts\|slow\|require-or\|silentfail\|pref\|test-pref\|ref-pref\|fuzzy\)[^ ]* *\?\)\+//;/^default-preferences /d;s/ \?# \?\(TC: \)\?[bB]ug.*//;s/ # Initial mulet triage:.*//' $(find . -name reftest.list)
sed -i -e 's/-moz-column/column/g;s/-moz-crisp-edges/pixelated/g' $(find . -regex ".*\.\(xht\|xhtml\|html\|css\)")
sed -i -e 's/-moz-crisp-edges/pixelated/g' $(find . -regex ".*\.\(xht\|xhtml\|html\|css\)")
git add -A .
git commit -m"Sync Mozilla tests as of https://hg.mozilla.org/mozilla-central/rev/$MOZREV ." .