Bug 605689. Copy mUnknownProperty correctly. r=dbaron, a=blocker

This commit is contained in:
Boris Zbarsky 2010-10-20 20:24:16 -04:00
Родитель 4278311832
Коммит a593182495
3 изменённых файлов: 15 добавлений и 0 удалений

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

@ -0,0 +1,13 @@
<!DOCTYPE html>
<script>
function boom()
{
var r = document.documentElement;
r.style.display = "table-cell";
r.style.MozTransitionProperty = "x";
window.getComputedStyle(r).MozTransitionProperty;
}
</script>
<body onload="boom();"></body>

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

@ -63,3 +63,4 @@ load 580685.html
load 592698-1.html
load 601437-1.html
load 601439-1.html
load 605689-1.html

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

@ -1941,6 +1941,7 @@ nsTransition::nsTransition(const nsTransition& aCopy)
, mDuration(aCopy.mDuration)
, mDelay(aCopy.mDelay)
, mProperty(aCopy.mProperty)
, mUnknownProperty(aCopy.mUnknownProperty)
{
}