-
Notifications
You must be signed in to change notification settings - Fork 459
Update the history before rendering promoted frames #618
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
Changes from 10 commits
710c3ad
5d1d47b
c11a9dd
70c21a8
5b225a9
2ccbb21
2fa1923
3f7d26b
386f4a9
c964e7d
203f219
e73df52
d46717a
e99e69e
0deb581
16b3bdd
486f7ef
93395bc
eedb214
967c725
9e7a541
944c169
d535b53
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Tabs</title> | ||
<script src="/dist/turbo.es2017-umd.js"></script> | ||
<script src="/src/tests/fixtures/test.js"></script> | ||
</head> | ||
<body> | ||
<h1>Tabs</h1> | ||
|
||
<turbo-frame id="tab-content" data-turbo-action="advance"> | ||
<div> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs.html">Tab 1</a> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs/two.html">Tab 2</a> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs/three.html">Tab 3</a> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it necessary to declare these anchors with an Also, are there plans to add tests to cover the new behavior and to guard against regressions? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, I wanted to validate the idea and implementation and will follow up with some tests There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @seanpdoyle I added some tests in e99e69e...16b3bdd, but it's really hard to know the state of tests already in place since there's a lot of flakiness. I'm different seeing test pass and fail each run |
||
</div> | ||
|
||
One | ||
</turbo-frame> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<turbo-frame id="tab-content" data-turbo-action="advance"> | ||
<div> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs.html">Tab 1</a> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs/two.html">Tab 2</a> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs/three.html">Tab 3</a> | ||
manuelpuyol marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</div> | ||
|
||
Three | ||
</turbo-frame> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<turbo-frame id="tab-content" data-turbo-action="advance"> | ||
<div> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs.html">Tab 1</a> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs/two.html">Tab 2</a> | ||
<a id="drive_enabled" href="/src/tests/fixtures/tabs/three.html">Tab 3</a> | ||
</div> | ||
|
||
Two | ||
</turbo-frame> |
Uh oh!
There was an error while loading. Please reload this page.