Bug 1603554 - Remove XULElement.align from webidl and c++ r=bzbarsky

Differential Revision: https://phabricator.services.mozilla.com/D57156

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Kirk Steuber 2019-12-14 02:23:15 +00:00
Родитель 6e1c7fdb61
Коммит d9826ec84c
2 изменённых файлов: 0 добавлений и 8 удалений

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

@ -13,8 +13,6 @@ interface XULElement : Element {
// Layout properties
[SetterThrows]
attribute DOMString align;
[SetterThrows]
attribute DOMString dir;
[SetterThrows]
attribute DOMString flex;

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

@ -383,12 +383,6 @@ class nsXULElement : public nsStyledElement {
}
// WebIDL API
void GetAlign(DOMString& aValue) const {
GetXULAttr(nsGkAtoms::align, aValue);
}
void SetAlign(const nsAString& aValue, mozilla::ErrorResult& rv) {
SetXULAttr(nsGkAtoms::align, aValue, rv);
}
void GetDir(DOMString& aValue) const { GetXULAttr(nsGkAtoms::dir, aValue); }
void SetDir(const nsAString& aValue, mozilla::ErrorResult& rv) {
SetXULAttr(nsGkAtoms::dir, aValue, rv);