icecat: add release icecat-140.10.1-1gnu1 for ecne
This commit is contained in:
parent
a5f93cb214
commit
ff85d7c623
1256 changed files with 63469 additions and 24141 deletions
|
|
@ -429,13 +429,9 @@ nsTArray<Decimal> nsRangeFrame::TickMarks() {
|
|||
}
|
||||
auto min = input.GetMinimum();
|
||||
auto max = input.GetMaximum();
|
||||
auto* options = list->Options();
|
||||
nsAutoString label;
|
||||
for (uint32_t i = 0; i < options->Length(); ++i) {
|
||||
auto* item = options->Item(i);
|
||||
auto* option = HTMLOptionElement::FromNode(item);
|
||||
MOZ_ASSERT(option);
|
||||
if (option->Disabled()) {
|
||||
for (nsINode* n = list->GetFirstChild(); n; n = n->GetNextNode(list)) {
|
||||
auto* option = HTMLOptionElement::FromNode(n);
|
||||
if (!option || option->Disabled()) {
|
||||
continue;
|
||||
}
|
||||
nsAutoString str;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue