Closed
Bug 256895
Opened 21 years ago
Closed 21 years ago
link not accessible when right and left clip properties have pixel values
Categories
(Core :: Layout, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: will, Unassigned)
References
()
Details
(Keywords: testcase)
Attachments
(1 file)
|
2.50 KB,
text/html
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7.2) Gecko/20040803
Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7.2) Gecko/20040803
A link inside an abolutely positioned element with the clip property set to a
rect with non-auto values for left and right is not accessible via the mouse.
Reproducible: Couldn't Reproduce
Steps to Reproduce:
1. Go the the test page: http://odin.himinbi.org/tests/test_set_clip.html
2. Select "Set Clipped Left and Right"
3. Try to click link
Actual Results:
Link does not cause a change in the cursor and is not clickable.
Expected Results:
Allowed me to click the link. I can do so for any of the other settings of the
clip property.
| Reporter | ||
Comment 1•21 years ago
|
||
Comment 2•21 years ago
|
||
You have set up the left clip edge to the right of the right clip edge.
This works (leaving 160px visible):
<input type="button" style="background-color: lightblue" value="Set
Clipped Left and Right"
onclick="setClip('auto', (window.innerWidth / 2 + 80) + 'px',
'auto', (window.innerWidth / 2 - 80) + 'px')">
</input>
See http://www.w3.org/TR/CSS21/visufx.html#propdef-clip
-> INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•