-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOM: Add moveBefore() live range update tests
See whatwg/dom@8d24d3b. [email protected] Bug: 40150299 Change-Id: I105d9e14c7ec29656ce2e9934cf593428ca23be5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6003744 Commit-Queue: Dominic Farolino <[email protected]> Reviewed-by: Noam Rosenthal <[email protected]> Cr-Commit-Position: refs/heads/main@{#1380889}
- Loading branch information
1 parent
8686b7a
commit b6fb107
Showing
1 changed file
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<script src='/resources/testharness.js'></script> | ||
<script src='/resources/testharnessreport.js'></script> | ||
</head> | ||
|
||
<body> | ||
</body> | ||
|
||
<script> | ||
'use strict'; | ||
|
||
test(t => { | ||
document.body.innerHTML = ` | ||
<div id=old_parent> | ||
<span id=start>RangeStartTarget</span> | ||
<span id=middle>Middle</span> | ||
<span id=end>RangeEndTarget</span> | ||
</div>`; | ||
|
||
const range = new Range(); | ||
range.setStart(start, 0); | ||
range.setEnd(end, 0); | ||
|
||
assert_true(range.intersectsNode(middle), "Intersection before move"); | ||
// Moves `start` span to the very bottom of the container. | ||
old_parent.moveBefore(start, null); | ||
|
||
// In an ordinary removal, when a node whose descendant is the start (or end) | ||
// of a live range is removed, the range's start is set to the removed node's | ||
// parent. This does not happen during a `moveBefore()`. | ||
assert_equals(range.startContainer, start, "startContainer does not update after move"); | ||
assert_equals(range.endContainer, end, "endContainer does not update after move"); | ||
assert_false(range.intersectsNode(middle), "range no longer intersects " + | ||
"middle node after move"); | ||
}, "moveBefore does not cause range startContainer to snap up to parent when " + | ||
"startContainer is moved"); | ||
|
||
test(t => { | ||
document.body.innerHTML = ` | ||
<div id=old_parent> | ||
<div id=movable_div> | ||
<span id=start>RangeStartTarget</span> | ||
<span id=middle>Middle</span> | ||
</div> | ||
<span id=end>RangeEndTarget</span> | ||
</div> | ||
<div id=new_parent></div>`; | ||
|
||
const range = new Range(); | ||
range.setStart(start, 0); | ||
range.setEnd(end, 0); | ||
|
||
assert_true(range.intersectsNode(middle), "Intersection before move"); | ||
new_parent.moveBefore(movable_div, null); | ||
|
||
assert_not_equals(range.startContainer, old_parent, "startContainer does " + | ||
"not snap up to moved ancestor node's parent"); | ||
assert_equals(range.startContainer, start, "startContainer does not update after move"); | ||
assert_equals(range.endContainer, end, "endContainer does not update after move"); | ||
assert_false(range.intersectsNode(middle), "range no longer intersects " + | ||
"middle node after move"); | ||
}, "moveBefore does not cause range startContainer to snap up to parent, when " + | ||
"startContainer ancestor is moved"); | ||
|
||
test(t => { | ||
document.body.innerHTML = ` | ||
<div id=old_parent> | ||
<span id=start>RangeStartTarget</span> | ||
<div id=movable_div> | ||
<span id=end>RangeEndTarget</span> | ||
</div> | ||
</div> | ||
<div id=new_parent> | ||
<span id=middle>Middle</span> | ||
</div>`; | ||
|
||
const range = new Range(); | ||
range.setStart(start, 0); | ||
range.setEnd(end, 0); | ||
|
||
assert_false(range.intersectsNode(middle), "No intersection before move"); | ||
new_parent.moveBefore(movable_div, null); | ||
|
||
assert_not_equals(range.endContainer, old_parent, "endContainer does not " + | ||
"snap up to moved ancestor node's parent"); | ||
assert_equals(range.startContainer, start, "startContainer does not update after move"); | ||
assert_equals(range.endContainer, end, "endContainer does not update after move"); | ||
assert_true(range.intersectsNode(middle), "range intersects middle node after move"); | ||
}, "moveBefore does not cause range endContainer to snap up to parent, when " + | ||
"endContainer ancestor is moved"); | ||
</script> | ||
</html> |
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F945C6:3D62848:67316453.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F94612:3D628D2:67316453.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:717734:DACFFD:67316453.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:30071E:5C4FAB:67316453.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBA65A:3DBBC0B:67316453.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBA6A2:3DBBC97:67316453.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:300824:5C51B3:67316453.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBA73F:3DBBDCE:67316453.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:71797F:DAD481:67316454.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F9483F:3D62D2D:67316454.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBA874:3DBC01E:67316454.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBA8AC:3DBC08F:67316454.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F949C2:3D63006:67316454.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:717AF0:DAD766:67316454.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:300A92:5C569A:67316454.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBAA02:3DBC33E:67316454.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBAA75:3DBC409:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBAAB6:3DBC478:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:300BC2:5C58FE:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F94BDE:3D63425:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBABE8:3DBC6E4:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:300C9D:5C5AC2:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:717E68:DADDFD:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F94D44:3D636F0:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:717E27:DADD7D:67316455.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:300E17:5C5D88:67316456.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBADD6:3DBCAB6:67316456.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F94E73:3D63917:67316456.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D06:A1C2E:213FCF3:40C6F64:67316456.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBAEC5:3DBCC61:67316456.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:300FB6:5C60B1:67316456.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F94FB2:3D63B89:67316456.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBAFEF:3DBCEBE:67316457.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D06:A1C2E:213FEE4:40C7338:67316456.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBB13B:3DBD13D:67316457.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBB19C:3DBD1FE:67316457.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D06:A1C2E:214010B:40C7747:67316457.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:30127B:5C6621:67316457.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A884:1825:3012D1:5C66D8:67316457.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBB2D0:3DBD451:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D0A:2EDDFC:1FBB2F9:3DBD4A4:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D06:A1C2E:214025D:40C79DB:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:7185A6:DAEC3A:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F95434:3D64436:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D0A:2EDDFC:1FBB433:3DBD6DD:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:7186E2:DAEE85:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBB537:3DBD8D3:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D0A:2EDDFC:1FBB58E:3DBD985:67316459.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D06:A1C2E:21404D8:40C7EAB:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D06:A1C2E:2140539:40C7F7F:67316459.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F956AD:3D648E0:67316458.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBB700:3DBDC3E:67316459.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D06:A1C2E:2140686:40C81C5:67316459.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:718989:DAF394:67316459.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:7189E6:DAF45F:67316459.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE32:2EDDFC:1FBB835:3DBDE91:6731645A.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D06:A1C2E:21407FE:40C84DE:6731645A.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID A278:2308D4:1F95908:3D64D5E:6731645A.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID DE2E:1B22FB:718B8A:DAF7A2:6731645A.
b6fb107
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.
Uh oh! Looks like an error!
HttpError: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9D0A:2EDDFC:1FBB994:3DBE133:67316459.