Bug 1101311 - Use text-decoration-* instead of -moz-text-decoration. r=florian, a=me

This commit is contained in:
Hiroyuki Ikezoe 2014-11-19 03:20:00 +02:00
Родитель d1e40e678d
Коммит d690f14bba
2 изменённых файлов: 6 добавлений и 6 удалений

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

@ -102,7 +102,7 @@ const kStandardMode = {
styles: { styles: {
'font-style': true, 'font-style': true,
'font-weight': true, 'font-weight': true,
'-moz-text-decoration-line': true 'text-decoration-line': true
} }
}; };
@ -150,9 +150,9 @@ const kPermissiveMode = {
'font-size': true, 'font-size': true,
'font-style': true, 'font-style': true,
'font-weight': true, 'font-weight': true,
'-moz-text-decoration-color': true, 'text-decoration-color': true,
'-moz-text-decoration-style': true, 'text-decoration-style': true,
'-moz-text-decoration-line': true 'text-decoration-line': true
} }
}; };

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

@ -148,8 +148,8 @@ function test_standardMode() {
let string = "<span style=\"" + css + "\">foo</span>"; let string = "<span style=\"" + css + "\">foo</span>";
do_check_eq(string, cleanupImMarkup(string)); do_check_eq(string, cleanupImMarkup(string));
} }
// text-decoration is a shorthand for several -moz-text-decoration properties. // text-decoration is a shorthand for several text-decoration properties.
do_check_eq("<span style=\"-moz-text-decoration-line: underline;\">foo</span>", do_check_eq("<span style=\"text-decoration-line: underline;\">foo</span>",
cleanupImMarkup("<span style=\"text-decoration: underline\">foo</span>")); cleanupImMarkup("<span style=\"text-decoration: underline\">foo</span>"));
const badCSS = [ const badCSS = [