Closed
Bug 174453
Opened 23 years ago
Closed 23 years ago
Better word selection with CTRL key for Location Bar
Categories
(Core :: DOM: Selection, enhancement)
Core
DOM: Selection
Tracking
()
People
(Reporter: bugzillaman, Assigned: aaronlev)
Details
User-Agent: Mozilla/4.0 (compatible; Stop Reading My Stats; RedHat -1.0)
Build Identifier: Mozilla v1.2a
One of the nicer features of IE is its ability to allow easy keyboard-only
editing of URIs in the address bar. One of the ways this is accomplished is
with CTRL modification of the behavior of keyboard-controlled highlighting.
A short summary of IE's block-highlight behavior:
if ( shift_key )
{
if ( ctrl_key )
{
add the character immediately to the (arrow keypress direction) of the
cursor to the selected text;
while ( next character in that direction is not an element of { '/',
'+', '&', '.', ':' )
{
add that character to the selection;
}
}
}
The rules are actually a little more complicated than that, but that'd be one
heck of a start, and would really help out all the IE power users trying to
migrate to Mozilla.
Reproducible: Always
Steps to Reproduce:
Eek, my pseudocode has parse errors in the while()... you get the idea, though.
![]() |
||
Comment 2•23 years ago
|
||
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Component: Keyboard Navigation → Selection
Resolution: --- → DUPLICATE
Summary: Block Select with CTRL Key for Address Bar → Better word selection with CTRL key for Location Bar
You need to log in
before you can comment on or make changes to this bug.
Description
•