I was not able to see Window.status message in Chrome
Reported by
bckarut...@gmail.com,
Mar 23 2016
|
||||||||
Issue descriptionUserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36 Steps to reproduce the problem: 1. our web application put window.status for all input fields, but I don't see it in the normal browser but when I open developer console I was able to get the Window.status message. 2. 3. What is the expected behavior? What went wrong? Window.status message now showing up in Chrome Did this work before? N/A Chrome version: 49.0.2623.87 Channel: stable OS Version: 10.0 Flash Version: Shockwave Flash 21.0 r0
,
Mar 24 2016
Hello,
The below is the sample code, it is just a HTML page with Javascript added
to it, When I am on IE and when I click on on "Click me" button, I get the
status message as "This field should have a min length 2 and a maxlength of
10". When I do the same thing on Chrome I don't get the status message.
Attached is the screen shot of the status message i see in IE. Please let
me know how I can get the status message on Chrome.
<!DOCTYPE html>
<html>
<body>
<script type="text/javascript">
function validate() {
var minvalue, maxvalue;
minvalue = document.getElementById("rollnumber").min;
maxvalue = document.getElementById("rollnumber").max;
window.status = "This field should have a min length " +
minvalue + " and a max length of " + maxvalue;
}
</script>
<input type="number" max="10" min="2" id="rollnumber" />
<button onclick="validate()">Click me</button>
</body>
</html>
,
Mar 24 2016
,
Mar 24 2016
Thank you for providing more feedback. Assigning to requester "kavvaru@chromium.org" for another review. For more details visit https://sites.google.com/a/chromium.org/dev/issue-tracking/autotriage - Your friendly Sheriffbot
,
Mar 29 2016
Hello, Do you have any update on the above request? Thank you, Chowdary Karuturi
,
Apr 22 2016
,
Apr 25 2016
Unable to reproduce the issue on windows 7, Linux Ubuntu 14.04 and Mac 10.11.4 using chrome version 50.0.2661.87 with the below steps 1. Opened the html file with code from comment #2 2. Clicked on Click me button 3.Not observed any status message at bottom and dev tools. Not seeing this message on IE 11 and Firefox as well. could you please once try the issue on Firefox and update the thread. Thanks,
,
Apr 25 2016
,
Apr 25 2016
Hello, Please look at the attached image, the "window.status" works fine in IE11 and Firefox has a plugin that we have to add to make the "window.status" work, please let me know how to make window.status work in google chrome.
,
Apr 25 2016
Is there a way to make Window.status work in Chrome? Thank you, Chowdary Karuturi
,
Apr 26 2016
Thank you for providing more feedback. Adding requester "kavvaru@chromium.org" for another review and adding "Needs-Review" label for tracking. For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot
,
May 10 2016
Unable to reproduce the issue on windows 7 using chrome version 50.0.2661.94 and canary 52.0.2730.0. Not seeing any message in IE11 as well. please find the attached screen cast for the same. Thanks,
,
Jun 27 2016
Marking the above issue as wontifx due to lack of user response. However, feel free to report a new issue if encountered with any other issue again with newer version of chrome. Thank you! |
||||||||
►
Sign in to add a comment |
||||||||
Comment 1 by kavvaru@chromium.org
, Mar 24 2016Labels: Needs-Feedback