-
Notifications
You must be signed in to change notification settings - Fork 2k
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
3.x tests #5200
Conversation
related: |
test/unit/shady-unscoped-style.html
Outdated
assertComputed(el1.$.fromImport, '2px'); | ||
assertComputed(el2.$.fromStyle, '1px'); | ||
assertComputed(el2.$.fromImport, '2px'); | ||
}); |
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.
Why are all these tests removed? The fromStyle
ones seem to just be style module-related...
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.
good point.
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.
The second set are deleted because there is nothing to dedupe since we don't have the css html import
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.
relevant tests added back in
Number of Chrome failing tests 56 -> 17. Remaining are assigned to Dan and we have a plan of action for each assigned to him already. Unfortunately adding
import.meta.url
to some of thedom-module
assetpath
s has caused FF and Safari to completely break until polyserve can sent AMD modules to browsers that implementimport
but notimport.meta
For info on what I fixed and what was wrong, see this doc (visible only to googlers).
CC @azakus
I branched off of
3.x-modularized
which is branched off of3.x
. Merge target is the modularized one. LMK if you want me to change the merge target.