Bug 1372863 - Fix dump message of frame tree for preserves-3d. r=mattwoodrow

This commit is contained in:
Thinker K.F. Li 2017-06-21 04:56:00 -04:00
Родитель 13dd8118c8
Коммит 35588e8dd0
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -7182,10 +7182,10 @@ nsIFrame::ListGeneric(nsACString& aTo, const char* aPrefix, uint32_t aFlags) con
aTo += nsPrintfCString(" perspective");
}
if (Extend3DContext()) {
aTo += nsPrintfCString(" preserves-3d-children");
aTo += nsPrintfCString(" extend-3d");
}
if (Combines3DTransformWithAncestors()) {
aTo += nsPrintfCString(" preserves-3d");
aTo += nsPrintfCString(" combines-3d-transform-with-ancestors");
}
if (mContent) {
aTo += nsPrintfCString(" [content=%p]", static_cast<void*>(mContent));