- Notifications
You must be signed in to change notification settings - Fork179
The clickjacking attack, SSE, CSS-animations#343
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
e3ffff5
ceb3946
f6aafd1
0f3f2a9
ba4c2b9
9a855d9
ca0b538
52e5ab9
7d621a6
b310810
46d37a3
d5d59f6
3fe04de
d161dd1
52bf3af
8f3e3fe
ac9996b
3bd140e
18a38a3
75d1f7c
d9660ab
fb08989
0ef68a9
6e53413
c80ed0f
469e2d3
f84fa7d
d4c6a64
935199a
5f35c46
999ab9d
fafe785
76007bc
84362d4
22fdad6
d051d1e
f0f4d93
58e0228
d3cdbac
410a0e1
18f9da2
a6806c0
82cd9d5
6b1b439
64ccba1
e2a2219
ab9ef8d
af25da9
3a10141
08ed6b1
74de077
494b88d
f3db6f5
afeb15b
10e610c
5d29d2d
118c6cf
c0b84c4
ab8be27
5ae6e12
d2973b3
1da1d54
2078a03
9a56401
400fbf6
51a327f
80213a9
51fc021
6529a81
fd843a1
4e193b5
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -7,7 +7,7 @@ | ||
<body> | ||
<div>Змінює top.locationна javascript.info</div> | ||
<script> | ||
top.location = 'https://javascript.info'; | ||
Large diffs are not rendered by default.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -35,6 +35,7 @@ let openRequest = indexedDB.open(name, version); | ||
``` | ||
- `name` -- рядок, ім’я бази даних. | ||
astropsy999 marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
- `version` -- версія є цілим числом, типово `1` (пояснення нижче). | ||
У нас може бути багато баз даних з різними іменами, але всі вони існують лише в межах поточного вебсайту (протокол/домен/порт). Різні вебсайти не мають доступу до баз даних один одного. | ||
@@ -660,9 +661,9 @@ let request = store.openCursor(query, [direction]); | ||
- **`query`** є ключем або діапазоном ключів, як і для `getAll`. | ||
- **`direction`** є необов’язковим аргументом, що вказує який порядок використовувати: | ||
- `"next"` -- типово, курсор піднімається від найнижчого ключа до найвищчого. | ||
- `"prev"` -- зворотний порядок: вниз від запису з найбільшим ключем. | ||
- `"nextunique"`, `"prevunique"` -- те саме, що й вище, але пропускає записи з тим же ключем, який вже був (лише для курсорів за індексами, наприклад, для кількох книг із ціною=5 буде повернута лише перша). | ||
**Основна відмінність курсору полягає в тому, що `request.onsuccess` запускається кілька разів: один раз для кожного результату.** | ||
Uh oh!
There was an error while loading.Please reload this page.