Bug 1134069 part 1 - Move ruby autohiding reftests to w3c-css/submitted. r=dbaron

--HG--
rename : layout/reftests/css-ruby/autohiding-1-ref.html => layout/reftests/w3c-css/submitted/ruby/ruby-autohide-001-ref.html
rename : layout/reftests/css-ruby/autohiding-1.html => layout/reftests/w3c-css/submitted/ruby/ruby-autohide-001.html
rename : layout/reftests/css-ruby/autohiding-2-ref.html => layout/reftests/w3c-css/submitted/ruby/ruby-autohide-002-ref.html
rename : layout/reftests/css-ruby/autohiding-2.html => layout/reftests/w3c-css/submitted/ruby/ruby-autohide-002.html
rename : layout/reftests/css-ruby/autohiding-3-ref.html => layout/reftests/w3c-css/submitted/ruby/ruby-autohide-003-ref.html
rename : layout/reftests/css-ruby/autohiding-3.html => layout/reftests/w3c-css/submitted/ruby/ruby-autohide-003.html
extra : source : 027c19d2d80767e22cdf281d69932714b8599545
This commit is contained in:
Xidorn Quan 2015-02-19 22:54:05 +13:00
Родитель 3ae70c4475
Коммит 9e984bddba
10 изменённых файлов: 41 добавлений и 30 удалений

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

@ -1,14 +0,0 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Bug 1052123 - Autohide ruby annotations which are identical to their bases</title>
<link rel="stylesheet" href="common.css">
</head>
<body>
<ruby>
<rb></rb><rb></rb><rb></rb><rb></rb>
<rt></rt><rt></rt><rt></rt><rt></rt>
</ruby>
</body>
</html>

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

@ -1,8 +1,5 @@
default-preferences pref(layout.css.ruby.enabled,true)
== autohiding-1.html autohiding-1-ref.html
== autohiding-2.html autohiding-2-ref.html
== autohiding-3.html autohiding-3-ref.html
== box-generation-1.html box-generation-1-ref.html
== box-generation-2.html box-generation-2-ref.html
== box-generation-3.html box-generation-3-ref.html

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

@ -34,6 +34,9 @@ include images3/reftest.list
# Multi-column Layout 3
include multicol3/reftest.list
# Ruby Layout Module
include ruby/reftest.list
# Selectors Level 3
# include selectors3/reftest.list

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

@ -0,0 +1,5 @@
# Tests for autohiding base-identical annotations
== ruby-autohide-001.html ruby-autohide-001-ref.html
== ruby-autohide-002.html ruby-autohide-002-ref.html
== ruby-autohide-003.html ruby-autohide-003-ref.html

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

@ -2,8 +2,8 @@
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Bug 1052123 - Autohide ruby annotations which are identical to their bases</title>
<link rel="stylesheet" href="common.css">
<title>CSS Reference: Autohide ruby annotations which are identical to their bases</title>
<link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com">
</head>
<body>
<ruby>

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

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>CSS Test: Autohide ruby annotations which are identical to their bases</title>
<link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com">
<link rel="help" href="http://dev.w3.org/csswg/css-ruby/#autohide">
<link rel="match" href="ruby-autohide-001-ref.html">
</head>
<body>
<ruby>
<rb></rb><rb></rb><rb></rb><rb></rb>
<rt></rt><rt></rt><rt></rt><rt></rt>
</ruby>
</body>
</html>

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

@ -2,8 +2,8 @@
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Bug 1052123 - Autohide ruby annotations which are identical to their bases</title>
<link rel="stylesheet" href="common.css">
<title>CSS Reference: Autohide ruby annotations which are identical to their bases</title>
<link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com">
</head>
<body>
<p><ruby>

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

@ -2,16 +2,18 @@
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Bug 1052123 - Autohide ruby annotations which are identical to their bases</title>
<link rel="stylesheet" href="common.css">
<title>CSS Test: Autohide ruby annotations which are identical to their bases</title>
<link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com">
<link rel="help" href="http://dev.w3.org/csswg/css-ruby/#autohide">
<link rel="match" href="ruby-autohide-002-ref.html">
<script>
window.onload = function() {
// Force a reflow before changes.
document.body.clientWidth;
var elems = document.querySelectorAll('[data-content]');
Array.from(elems).forEach(function(e) {
e.textContent = e.dataset.content;
});
for (var i = 0; i < elems.length; i++) {
elems[i].textContent = elems[i].dataset.content;
}
};
</script>
</head>

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

@ -2,8 +2,8 @@
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Bug 1052123 - Autohide ruby annotations which are identical to their bases</title>
<link rel="stylesheet" href="common.css">
<title>CSS Reference: Autohide ruby annotations which are identical to their bases</title>
<link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com">
<style>
body { line-height: 5em; }
</style>

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

@ -2,8 +2,10 @@
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Bug 1052123 - Autohide ruby annotations which are identical to their bases</title>
<link rel="stylesheet" href="common.css">
<title>CSS Test: Autohide ruby annotations which are identical to their bases</title>
<link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com">
<link rel="help" href="http://dev.w3.org/csswg/css-ruby/#autohide">
<link rel="match" href="ruby-autohide-003-ref.html">
<style>
body { line-height: 5em; }
</style>