Bug 158790
| Summary: | Assertion failure when initializing Intl prototypes | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | André Bargull <andre.bargull> |
| Component: | JavaScriptCore | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | Normal | CC: | fpizlo, ggaren, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Local Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
André Bargull
SVN: rev202088
Build with: perl Tools/Scripts/build-jsc --gtk --debug
The following test case triggers this assertion error:
---
ASSERTION FAILED: !state.hadException()
---
Test case:
---
Object.prototype.localeMatcher = "invalid";
Intl.NumberFormat.prototype.resolvedOptions();
---
Stack trace:
---
#0 0x00007ffff6de7098 in WTFCrash () at ../../Source/WTF/wtf/Assertions.cpp:317
#1 0x00007ffff6b837b8 in JSC::IntlNumberFormat::resolvedOptions (this=0x7fffaf1e3eb0, state=...) at ../../Source/JavaScriptCore/runtime/IntlNumberFormat.cpp:492
#2 0x00007ffff6b85d5f in JSC::IntlNumberFormatPrototypeFuncResolvedOptions (state=0x7fffffffcb40)
at ../../Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.cpp:149
#3 0x00007fffb0bff028 in ?? ()
#4 0x00007fffffffcba0 in ?? ()
#5 0x00007ffff69f26a1 in llint_entry () at ../../Source/WTF/wtf/RefPtr.h:79
---
Similar issues can be reproduced with:
---
Object.prototype.localeMatcher = "invalid";
Intl.NumberFormat.prototype.format(0);
---
And:
---
Object.prototype.localeMatcher = "invalid";
Intl.Collator.prototype.resolvedOptions();
---
And:
---
Object.prototype.localeMatcher = "invalid";
Intl.Collator.prototype.compare();
---
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Radar WebKit Bug Importer
<rdar://problem/26826791>
André Bargull
Does no longer reproduce at r215724, because the Intl prototypes are no longer Intl object instances.