зеркало из https://github.com/mozilla/pjs.git
Bug 556027: Propagate 'accelerated' attribute from nsXULWindow. r=roc
This commit is contained in:
Родитель
34b849c1ad
Коммит
f4454e4b81
|
@ -1374,6 +1374,13 @@ void nsXULWindow::SyncAttributesToWidget()
|
|||
mWindow->HideWindowChrome(PR_TRUE);
|
||||
}
|
||||
|
||||
// "accelerated" attribute
|
||||
PRBool isAccelerated;
|
||||
rv = windowElement->HasAttribute(NS_LITERAL_STRING("accelerated"), &isAccelerated);
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
mWindow->SetAcceleratedRendering(isAccelerated);
|
||||
}
|
||||
|
||||
// "windowtype" attribute
|
||||
rv = windowElement->GetAttribute(NS_LITERAL_STRING("windowtype"), attr);
|
||||
if (NS_SUCCEEDED(rv) && !attr.IsEmpty()) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче