-
Notifications
You must be signed in to change notification settings - Fork 743
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
refactor(shape): wasm shape perf round-2 #19100
base: master
Are you sure you want to change the base?
Conversation
7d4a561
to
51e42b5
Compare
🤖 Your Docs stage site is ready! Visit it here: https://unodocsprstaging.z13.web.core.windows.net/pr-19100/index.html |
🤖 Your WebAssembly Sample App stage site is ready! Visit it here: https://unowasmprstaging.z20.web.core.windows.net/pr-19100/index.html |
|
51e42b5
to
bbd3dda
Compare
e.width.baseVal.value = width; | ||
e.height.baseVal.value = height; | ||
|
||
e.setAttribute('rx', rx.toString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in the older code, we were using setAttribute (via setAttributesNativeFast)
but it seems that we could use .baseVal.value here also
but whats the ramification of that, and which to favor?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we can avoid using strings, why not, I don't think of any other ramifications.
todo/fixme@xy:
|
4998cc7
to
d3eb683
Compare
d3eb683
to
9f2fc93
Compare
🤖 Your WebAssembly Sample App stage site is ready! Visit it here: https://unowasmprstaging.z20.web.core.windows.net/pr-19100/index.html |
🤖 Your Docs stage site is ready! Visit it here: https://unodocsprstaging.z13.web.core.windows.net/pr-19100/index.html |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥
e.width.baseVal.value = width; | ||
e.height.baseVal.value = height; | ||
|
||
e.setAttribute('rx', rx.toString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we can avoid using strings, why not, I don't think of any other ramifications.
The build 150568 found UI Test snapshots differences: Details
|
GitHub Issue (If applicable): closes #19048
PR Type
What kind of change does this PR introduce?
What is the current behavior?
todo
What is the new behavior?
todo
PR Checklist
Please check if your PR fulfills the following requirements:
Screenshots Compare Test Run
results.Other information