8000 Tags · dolboBobo/amphtml · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: dolboBobo/amphtml

Tags

1911121900560

Toggle 1911121900560's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Upgrade DOMPurify to 2.0.7 (ampproject#25552)

* Upgrade DOMPurify and refactor protocol sanitization.

* Fix null attrValue case.

* Allow safe uses of 'javascript:' etc.

* Add tests to test-sanitizer.js too.

* Fix presubmit.

1911070201440

Toggle 1911070201440's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Check if any remeasures are necessary when nested scrollers scroll (a…

…mpproject#25479)

Fixes ampproject#24929 (comment)

1911062056110

Toggle 1911062056110's commit message
Revert "🐛Expose amp-form response from SSR in `submit-success` and `s…

…ubmit-error` events. (ampproject#25242)" (ampproject#25470)

This reverts commit 48d5ffd.

1911052130250

Toggle 1911052130250's commit message
Narrow down script matching to avoid incorrect prefix matches (amppro…

…ject#25441)

* Narrow down script matching to avoid incorrect preffix matches

* minor

* Fix race condition on wait->reload

* update script existence

1911042323000

Toggle 1911042323000's commit message
Introduce AMP Live List Cache Busting (ampproject#25295)

* Use a random number as a URL parameter for live list refreshes
* JsonObject casting required
* Is a dict
* Add amp-live-list-random origin trial to gate adding a random identifier to each update of the live list
* Changes based on PR feedback
* Gu
8000
ard origin trial check in tri-state boolean
* Add dep-check allowance
* moved dep-check to correct segment
* Only check for origin trial if the list is enabled

1911011734590

Toggle 1911011734590's commit message
Fix visibility manager resolution in shadow doc mode (ampproject#25357)

* Fix visibility manager resolution in shadow doc mode

* lints

1910302211460

Toggle 1910302211460's commit message
🐛 Upgrade shadow root contents when defining new CEs (ampproject#25337)

* Upgrade shadow root contents when defining new CEs

When we've already initialized the the custom element registry, it used to drop the list of shadow roots. When a new CE was defined, we would then only query the host `document` (since we dropped all the shadow roots from the array). Obviously, that query selector won't find CEs inside the shadow tree.

So, we need to keep the list of shadow roots, that way we can query inside them when defining new custom elements.

Note, this will mean leaking every shadow permenantly. Even if the shadow's host is removed from the document, we'll still have to keep its reference. We could setup a long running interval to find disconnected trees, but it wouldn't be able to tell the difference between a temporarily disconneded shadow and a destoyed shadow.

* Fix comment

* Remove unused private

1910302207210

Toggle 1910302207210's commit message
🐛 Upgrade shadow root contents when defining new CEs (ampproject#25337)

* Upgrade shadow root contents when defining new CEs

When we've already initialized the the custom element registry, it used to drop the list of shadow roots. When a new CE was defined, we would then only query the host `document` (since we dropped all the shadow roots from the array). Obviously, that query selector won't find CEs inside the shadow tree.

So, we need to keep the list of shadow roots, that way we can query inside them when defining new custom elements.

Note, this will mean leaking every shadow permenantly. Even if the shadow's host is removed from the document, we'll still have to keep its reference. We could setup a long running interval to find disconnected trees, but it wouldn't be able to tell the difference between a temporarily disconneded shadow and a destoyed shadow.

* Fix comment

* Remove unused private

1910291709300

Toggle 1910291709300's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use @example.com for email spec example (ampproject#25055)

1910251950120

Toggle 1910251950120's commit message
Fix Custom Element instance creation in IE11 (ampproject#25245)

When we transpile `super` in Custom Element subclasses, we change it to
`superClass.call(this)` (where `superClass` is `HTMLElementPolyfill`).
That `.call` value is inherited from `Function.prototype`.  But, IE11's
native HTMLElement hierarchy doesn't extend from Function!  And because
`HTMLElementPolyfill` extends from `HTMLElement`, it doesn't have a
`.call`! So we need to manually install it.
0