|
Getting very confused about 'Expires' header here! Sometimes it works as expected - and some times not.
I am using the following code to set my expiration headers. Note this is being done with ASP.NET in an MVC custom attribute - thats not really relevant...
Started by Simon on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
Is tripping up Chrome becasue I created the simplest possible page as follows, and Chrome was still quite happily going back to the server and giving me a 200
public partial class test("must-revalidate, proxy-revalidate"); } }
I....
|
|
I use the Nightly Tester Tools for Firefox and Fiddler for IE. What do you use?
Started by not-bob on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Web Developer toolbar for Firefox....
Opera has is nifty too.
Problems we had only with 2 plugins: Adblock and FlashBlock
I would also test NoScript.
We test our website with a large range.
I have never think about it before.
A nice question.
|
|
Spent the afternoon trolling on the Murray today with my Dad and my girlfriends Dad. Had a very slow start with only a redfin in the first 2 hours, but then they turned it on.
I managed to get my first Silver Perch ever, and followed it up with a second...
Started by Mr_Willy on
, 7 posts
by 4 people.
Answer Snippets (Read the full thread at lureandmore):
Jamie might be able.
After yesterday it won't be long though.
Only in testing stage...
|
Ask your Facebook Friends
|
Given that Chrome and Safari use webkit has anyone yet found anything that renders differently on Chrome than Safari? Is there any reason at the moment to test sites on both, or would testing Safari be sufficient for right now?
Started by tloach on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
This is probably a good place to note that Chrome....
Google Chrome also uses an earlier version of Webkit than the current Safari, so pages should javascript renderer), so if your page uses javascript substantially I'd test it in both.
|
|
If my app has been tested in Firefox 3, Safari 3 & IE 7 will it need additional testing for Chrome?
If there are areas that'll need further testing -- then are there any online guides I could share with my designers & developers?
At what point will Chrome...
Started by Andykiteman on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Personally....
Always test in these browsers nowdays:
Internet Explorer 6, 7, 8 Firefox 2, 3 Chrome Opera Safari Lynx on Chrome.
So by that said, i think you should already be testing your applications in chrome as well.
|
|
I am using FF as the main testing platform and Chrome (for Mac) as the secondary. I just noticed that Chrome is showing ~20px off positioning for CSS. (just to be clear Chrome is showing the TEXTAREA ~20px down as compared to FF) Also Chrome is not obeying...
Started by amit on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Can edit your code individually for moz or chrome:
Gecko browsers (FIREFOX):
@-moz-document url-prefix() { /* Gecko-specific CSS here */ }
WebKit browsers (CHROME, SAFARI):
@media screen and (-webkit.
|
|
I wish to know from SO security experts and hackers what kind of tools would they use to find a security hole in Chrome's armor? And using what programming and testing techniques?
I'm particularly interested in Open Source tools running on Linux.
Google...
Started by esavard on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I can only imagine the testing Google would.
Finding exploits like this can be very tricky.
But the points above should help you find overflows and whatnot in Chrome, if there are any.
Of fuzzing myself.
|
|
I was puzzled at first why my files weren't uploading for some users and I found out it was everyone who wasn't using chrome which was the browser I was testing.
Basically I'm doing a file check to make sure they are only able to upload mp3s.
This this...
Started by Tek on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There is no mention of mp3 there, so this is buggy behaviour on Chrome's.
List of MIME types here.
|
|
Hi We are testing our app in Google chrome for support. The basic loading is in scrambled and all the pages are in total CSS mess which we need to clean up unfortunately.For this I require a tool which works similar to firebug for Mozilla.Also to check...
Started by GustlyWind on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Just right-click to inspect element and you should.
Chrome comes with a Firebug equivalent built-in.
|
|
As the title states, I'd be interested to find a safe feature-based (that is, without using navigator.appName or navigator.appVersion) way to detect Google Chrome.
By feature-based I mean, for example:
if(window.ActiveXObject) { // internet explorer! ...
Started by silvertab on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Marijn's point and are interested in testing the user agent string via javascript:
var is_chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ //test for Chrome/x.x var cversion=new Number(RegExp.$1 the Chrome....
|