-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xmlns:ns
is now returned as attribute
#676
Comments
Could you explain, what that syntax mean and should do? var y1 = <y xmlns:ns="foo" a="10" ns:c="30" ns:d="40"/>;
trace(y1.@*); |
Yes, sorry, this was not evident at all... 😅 This is ActionScript - the programming language for Adobe Flash movies. This test is supposed to list all the attribute values of the element.
|
As for how |
I looked into this on the Ruffle side, it's our mistake, sorry! We expected to see |
Turns out, this was on us. Sorry for bothering you and wasting your bandwidth... 😞 |
We're seeing a change of behavior starting with #545.
This causes CI on ruffle-rs/ruffle#13785 to fail: https://github.com/ruffle-rs/ruffle/actions/runs/6709470764/job/18232602777
The specific code that's broken:
Expected:
103040
Ruffle with quick-xml update:
foo103040
It seems the
xmlns:ns
attribute is now returned when it previously wasn't.Is this expected? If so, could you assist us in how to get back the old behavior?
The text was updated successfully, but these errors were encountered: