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

repl doesn't show all text #1260

Closed
jrieken opened this issue Dec 14, 2015 · 2 comments
Closed

repl doesn't show all text #1260

jrieken opened this issue Dec 14, 2015 · 2 comments
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug verified Verification succeeded
Milestone

Comments

@jrieken
Copy link
Member

jrieken commented Dec 14, 2015

Take this code snippet

var value = ''
var i = 10000;
while (i-- > 0) {
    value += Math.random().toString(16);
    value += '\n';
}
value += 'END';
console.log(value)
  • break on the last line
  • type value in the debug console
  • ▶️ last bits are not shown 😢
@jrieken jrieken added the bug Issue identified by VS Code Team member as probable bug label Dec 14, 2015
@jrieken
Copy link
Member Author

jrieken commented Dec 14, 2015

screen shot 2015-12-14 at 14 25 31

@dbaeumer dbaeumer added this to the Backlog milestone Dec 14, 2015
@isidorn isidorn modified the milestones: Dec 2015, Backlog Dec 14, 2015
@isidorn
Copy link
Contributor

isidorn commented Dec 15, 2015

Only happens for very long strings when the repl has a specific size. Resizing the repl should show the value -> backlog
The issue is that I am measuring the width of the outer div not the span itself and this produces a difference in a couple of pixels. I would restructure the dome nodes for output elements but not for endgame week.

@isidorn isidorn modified the milestones: Backlog, Dec 2015 Dec 15, 2015
@isidorn isidorn assigned jrieken and unassigned isidorn Feb 12, 2016
@jrieken jrieken added the verified Verification succeeded label Dec 7, 2016
@vscodebot vscodebot bot locked and limited conversation to collaborators Nov 18, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

3 participants