Closed
Bug 334310
Opened 20 years ago
Closed 13 years ago
E4X: position of xmlns attrib with {var} in attrib name
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: BijuMailList, Unassigned)
References
Details
(Keywords: testcase)
Attachments
(1 file)
|
19.12 KB,
text/html
|
Details |
h='a';
hhh='aa:a';
a=<a xmlns:aa="uri.ns" {h}a:a="value of aa:a" ><b/></a>;
a=<a xmlns:aa="uri.ns" {hhh}="value of aa:a" ><b/></a>;
// and
a=<a aa:a="value of aa:a" xmlns:aa="uri.ns" ><b/></a>;
// is fine
// but following is not !!!
h='a';
hhh='aa:a';
a=<a {h}a:a="value of aa:a" xmlns:aa="uri.ns"><b/></a>;
a=<a {hhh}="value of aa:a" xmlns:aa="uri.ns"><b/></a>;
h='a';
hhh='aa:a';
a=<a {hhh}="value of aa:a" xmlns:aa="uri.ns"><b/></a>;
a=<a {h}a:a="value of aa:a" xmlns:aa="uri.ns"><b/></a>;
// solved by bug# 340024
// but still issues with
a=<a {h}:a="value of aa:a" xmlns:a="uri.ns" ><b/></a>;
a=<a a{h}:a="value of aa:a" xmlns:aa="uri.ns" ><b/></a>;
//due to other reasons, ie, } before : issue
Depends on: 340024
Comment 3•13 years ago
|
||
E4X will be removed again from Spidermonkey (bug 788293)
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•