Skip to content
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

🐛 [Story video-cache] Video cache doesn't add crossorigin attribute to video element #38222

Merged
merged 26 commits into from
May 20, 2022
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6aabe91
Added tasts
mszylkowski Dec 21, 2021
dc1fa87
Undo
mszylkowski Dec 21, 2021
d707e5b
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Dec 28, 2021
0e3df75
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Dec 28, 2021
a3f7bd0
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Jan 4, 2022
8c5119c
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Jan 6, 2022
77f8435
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Jan 10, 2022
16e712e
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Jan 19, 2022
8088eb7
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Jan 25, 2022
3858b2a
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Jan 28, 2022
e12d2f6
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Jan 31, 2022
2a29105
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Feb 1, 2022
a5b781f
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Feb 10, 2022
b8006ee
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Mar 8, 2022
b570e86
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Mar 10, 2022
6b7e456
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Mar 22, 2022
50bdff8
Merge branch 'ampproject:main' into main
mszylkowski Mar 24, 2022
267ae0e
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Mar 29, 2022
c7edd8c
Merge branch 'main' of github.com:mszylkowski/amphtml
mszylkowski Mar 29, 2022
9842a23
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Mar 29, 2022
83e25bb
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Apr 4, 2022
9ded8f1
Merge branch 'main' of github.com:mszylkowski/amphtml; branch 'main' …
mszylkowski Apr 5, 2022
4f7b975
Merge branch 'ampproject:main' into main
mszylkowski Apr 6, 2022
cf38c3f
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski Apr 29, 2022
fe714b6
Merge branch 'main' of github.com:ampproject/amphtml
mszylkowski May 16, 2022
854a320
Add crossorigin to videos in cache
mszylkowski May 20, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added tasts
  • Loading branch information
mszylkowski committed Dec 21, 2021
commit 6aabe915e891bbbac5cc52658136d87ef21eddfd
70 changes: 70 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "amp: Run unit test in this file",
"detail": "amp unit --files=${file} --headless --verbose",
"type": "shell",
"command": "amp",
"args": ["unit", "--files=${file}", "--headless", "--verbose"],
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "amp: Watch unit test in this file",
"detail": "amp unit --files=${file} --headless --verbose --watch",
"type": "shell",
"command": "amp",
"args": ["unit", "--files=${file}", "--headless", "--verbose", "--watch"],
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
"isBackground": true
},
{
"label": "amp: Run unit tests in all changed files",
"detail": "amp unit --local_changes --headless --verbose",
"type": "shell",
"command": "amp",
"args": ["unit", "--local_changes", "--headless", "--verbose"],
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "amp: Check PR",
"detail": "amp pr-check --nobuild",
"type": "shell",
"command": "amp",
"args": ["pr-check", "--nobuild"],
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
]
}