Backed out changeset f835a60a13a3 (bug 1380133)

This commit is contained in:
Sebastian Hengst 2017-07-20 15:39:38 +02:00
Родитель e1bbbcd59a
Коммит 234f850b1c
2 изменённых файлов: 0 добавлений и 39 удалений

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

@ -288,7 +288,6 @@ skip-if = !stylo
[test_transitions_and_reframes.html]
[test_transitions_and_restyles.html]
[test_transitions_and_zoom.html]
[test_transitions_at_start.html]
[test_transitions_cancel_near_end.html]
[test_transitions_computed_values.html]
[test_transitions_computed_value_combinations.html]

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

@ -1,38 +0,0 @@
<!doctype html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1380133
-->
<head>
<meta charset=utf-8>
<title>Test for transition value at start (Bug 1380133)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="stylesheet" href="/resources/testharness.css">
<style>
a {
color: red;
transition: 100s color;
}
a.active {
color: blue;
}
</style>
</head>
<body>
<a id=anchor><span id=span>Test</span></a>
</body>
<script>
'use strict';
const anchor = document.getElementById('anchor');
const span = document.getElementById('span');
test(() => {
anchor.classList.add('active');
assert_equals(getComputedStyle(span).color, 'rgb(255, 0, 0)',
'The child of a transitioning element should inherit its'
+ ' parent\'s transition start value');
}, 'Transition start value should be inherited');
</script>
</html>