A web browser or Internet browser is a software application for retrieving, presenting, and traversing information resources on the World Wide Web.
0
votes
0answers
18 views
What are the best practices for optimising JavaScript for (potential) future browser assembly-language optimisations?
As I understand it, the V8 engine in Chrome has been using assembly level optimisations for some time, and now the (at the time of writing) upcoming release of OdinMonkey on Firefox indicates that ...
0
votes
0answers
23 views
Why is box shadow inefficient and what to do about it
everytime I try to use box shadows with a greater value than a few pixels of blur I hit performance issues that make the slick operation of the page visibly degrade. I see a tiny increase in RAM and a ...
2
votes
0answers
43 views
Why is mouseenter event triggered when page below is scrolled?
I noticed mouseenter event triggered when mouse is untouched but the page below the cursor is scrolled.
Check out this fiddle: http://jsfiddle.net/F3EwW/
Steps to reproduce:
Click on a li
Use ...
0
votes
1answer
11 views
Centering flash in <div> on different browsers
I have this simple html page that I edited (from html page made by pano2vr program) to show panorama on. For some reason it does not center the flash content inside div on all browsers. On Chrome it ...
2
votes
0answers
27 views
Google Chrome: search in this site
Some time ago I made a website with wordpress, with my own theme.
Testing the site, discovered an interesting feature in Google Chrome:
If I start typing the address of the website, it says: Press ...
-1
votes
0answers
33 views
hover working in chrome but not in FF?
<div class="box-blue"><span class="thumbnails"><img src="images/silver.png" width="750px" /></span>
<div class="clear"></div>
<h5 style="font-size:25px; ...
-1
votes
0answers
13 views
Google chrome is overwriting the latest saved password with wrong password which we entered 1st time [closed]
I am testing the some issues.... at that time i am facing following issue with chrome browser.
First Clear the Browser history and set browser to remember passwords.
after that I am trying to login ...
-1
votes
0answers
11 views
How to open multiple tabs in SWT browser? [closed]
I would like to detect if an existing SWT browser opened by the application. If not, I would like to create a browser (browser creation code not needed, but detection code needed), otherwise I would ...
0
votes
0answers
22 views
How to embed SWT browser in an Eclipse view?
I would like to display the SWT browser just like an opened file tabbed in the Eclipse text Editor. My current implementation captures the shell of the TextEditor and blocks the editor which is not ...
3
votes
0answers
17 views
Calling API with POST method via Zombie.js browser
I'm working on testing my node.js code with Zombie.js. I have the following api, which is in POST method:
/api/names
and following code in my test/person.js file:
it('Test Retreiving Names Via ...
-1
votes
1answer
10 views
Record Browser Information
I need a way to detect and record the browser and version the client is using when visiting my site. I was wondering what the best way of doing this is. I am using MVC.net on the server end and JQuery ...
0
votes
0answers
14 views
Cache viewer for Google Chrome [closed]
I want to make a simple cache viewer for Google Chrome with C#, I didn't find any sample about how to access Chrome cache
I found that the cache existing on ...
8
votes
1answer
96 views
Why is this line of code necessary in clicking a button with JavaScript?
This solution was given to this question asking how to trigger an HTML button when Enter is pressed in an input field.
<input type="text" id="txtSearch" onkeypress="searchKeyPress(event);" />
...
-1
votes
0answers
27 views
Easiest svg shape to render
Is there a hierarchy of SVG shape complexity in relation to the speed the browser takes to render it?
I've been assuming that
lines --> are quicker than squares and other paths with straight edges ...
0
votes
1answer
19 views
GWTP - Using back button doesn't clear old content
I'm using gwtp and I have some troubles with the browsers back button.
My DefaultPlace is a login page (root content). If the the login is correct, it directs you to a welcome page (MainPagePresenter) ...
0
votes
0answers
13 views
Alternative to Browscap
I've been using Browscap in one of my opensource projects (a URL shortener if anyone's interested) for quite a while now and after updating it to the latest version I realized that it hasn't changed ...
0
votes
0answers
8 views
How to automatically simulate server responses from a browser plugin (Firefox/Chromium)
While I am testing a web application, for some requests that are computational intensive on the server side, I would like to simulate the server response directly from a browser add-on. I would like ...
0
votes
1answer
21 views
Manually renewing cached resources before browser does
I have some resources that my pages are using, defined as:
<script type="text/javascript" src="dictionary.js"></script>
Where dictionary.js is actualy created on the fly and returned ...
0
votes
0answers
29 views
Android webview not opening linkedin.com
I have a webview in my app. I have setJavaScriptEnabled to TRUE. Everything seems to be working pretty fine. All the websites I have tested with works great except, when I try to open linkedin.com, it ...
3
votes
2answers
122 views
How to set default browser in windows 8 using C#?
We all have been easily able to do this prior to Windows 8 (in XP/VISTA/WIN7) with few changes in Registry and it was done.
With Windows 8 it's not that easy (I'm yet to figure it out how). Windows 8 ...
0
votes
0answers
6 views
Changing browser for IPython Notebook from system default
I would like to keep firefox as my system default browser on my Mac, but launch IPython Notebook in Chrome[1].
This answer led me to my ipython_notebook_config.py file but I can't get an instance of ...
3
votes
1answer
61 views
GET request for redirect initiated by browser but not successful
While trying to redirect user to a URL, it works with GET requests but not with postback requests.
Through firebug's Network window, I can see the redirect response received by browser after the ...
0
votes
0answers
8 views
iPad Browser Tab Carousel - How to cycle browser tabs on iPad automatically?
I'm looking for a way to automatically cycle through browser tabs on an iPad.
This chrome extension (tabcarousel) is exactly what I want (every 15 seconds), but it seems extensions aren't available on ...
0
votes
1answer
25 views
Android Browser crash on file input save
The Android browser crashes in a very simple scenario (I am testing on Galaxy S3, Android 4.1.2):
I have a page with a text input and a file input (you can test it here http://jsbin.com/agugit/1/)
...
0
votes
1answer
22 views
Uri.parse with local ip adress
im trying to launch the Browser with an ip-address.
String url = "//192.168.178.1"
Intent i = new Intent(Intent.ACTION_VIEW);
i.addCategory(Intent.CATEGORY_BROWSABLE);
i.setData(Uri.parse(url));
...
0
votes
0answers
11 views
How create our own custom browser
I am developing a application in adobe air using flex builder, where I need to open web sites inside application.
Actually these applications works exactly same as web browser.
Currently I used the ...
0
votes
1answer
11 views
CSS alignment issues
I have been trying to build a website and when i was testing the website for browser compatibility issues on various browsers I noticed that there were problems with alignment.
Below is the live ...
1
vote
2answers
31 views
What is gZip compression?
I have heard a lot that one should use gZip for their webpages for faster access and downloads, and that it also saves the bandwidth.
So what is this gZip compression and how does it make the ...
2
votes
2answers
39 views
How I can call the browser escape (esc) function
How I can call this method of the esc function, to stop page loading, with jquery.
This is there some api call or something else.
Anyone an idea?
EDIT:
I want to cancel a form submission.
What I am ...
0
votes
0answers
4 views
Not able to add entries for System JRE settings in windows 7
I have both jdk1.6 and jdk1.7 installed in windows 7.
Added both the entries in Java Control Panel, JRE Settings , under User tab.
And enabled 1.7 version.
I want my browsers use version 1.7 for ...
1
vote
1answer
34 views
Background video that resizes to always fit the browser
I'm trying to create a website in which the background is a video. I've been searching for days on how to recreate something like Spotify's homepage background but cannot seem to make it work.
My ...
0
votes
0answers
7 views
Using Javascript to minitor periodic browser requests from server - New/Updated image
I use a web application that monitors servers. Now the servers are displayed on a jpeg image as icons. Whenever a server goes down, the server icon on the jpeg image changes to red - hence the image ...
0
votes
1answer
9 views
Displaying video's in mvc from database
I am trying to display videos in view page using asp.net mvc but video is
not playing because all browsers are not supporting that videos some browsers
is playing and in some browsers not playing.
...
-2
votes
0answers
26 views
Is it possible to control a client's browser with my browser? [closed]
It would be incredible if I could implement this feature into my CMS. A user could click a button, a session and password is set up, and I could control their browser.
IE would be off the cards, but ...
0
votes
1answer
31 views
output from a ruby script into web browser
I'm trying to implement http://blog.sosedoff.com/2011/04/09/serving-maintenance-page-with-rack-middleware/ with only one difference - my message is a whole *.html file which is read like so:
def ...
0
votes
2answers
33 views
Can you communicate with a browser window, after opening it with a JavaFX app?
My question is just as the title indicates.
I have a JavaFX app, and need to open a browser window. After opening it, I want to be able to communicate from the browser back to the app that opened it.
...
-7
votes
0answers
29 views
Programmatically, How do I implement a picture browser like the “Learn More” section of ReadyForZero app? (Pictures below) [closed]
I want to make something exactly like this.
With the little dots in the middle that notify which page we are on. But the buttons remain consistent.
I need at least 10 reputation to post the ...
1
vote
4answers
57 views
Browser ends PHP infinite loops and then prints the data
I am trying to capture live feeds from a card reader and printing it using PHP.
<?php
$i=0;
for(;;)
{
$subdata=file_get_contents("/home/openflow/subscribedata.txt");
...
0
votes
1answer
23 views
How do I sandbox a web browser control in C#?
I am using a web browser control to view cached web pages "offline". The problem I am running into is that when I load a page, some links obviously want to fetch the data from the internet.
I am not ...
0
votes
1answer
24 views
how to detect distro / os to apply css
I am currently using <!--[if statement to detect the type of browser the user has but i realized that the same browser (version and build) can produce different result on different operating ...
0
votes
1answer
23 views
Accessing Browser using RegistryEdit
I am accessing IE from my GUI when default browser is not set.that time i am accessing IE (when IE is not an default browser) by using path in RegisryEdit ...
0
votes
0answers
11 views
Content security policy not working
I am adding to my response header this header:
x-content-security-policy default-src 'none';
I would expect no css or images to be loaded on the page, but everything is loaded. What am I doing ...
0
votes
0answers
29 views
Vaadin request processing per http session
Am using Vaadin 6.8. Though the below link describes how Vaadin supports multiple browser tab,
https://vaadin.com/web/joonas/wiki/-/wiki/Main/Supporting%20Multible%20Tabs
Tabs of same browser will ...
0
votes
0answers
14 views
How to use other viewer class than terminal in AI::ExpertSystem::Advanced
I tried to use perl module AI::ExpertSystem::Advanced.
I want to try another viewer class - for example my browser.
How can I do it???
my $ai = AI::ExpertSystem::Advanced->new(
...
-3
votes
0answers
39 views
Javascript Browser Game Development [closed]
I have been planning on creating a browser game similar to the style of Runescape but dont know where to start. Specifically in regards to the actual coding. I was curious as to if there is a ...
-6
votes
1answer
57 views
Cross Browser compatibility issues - Firefox vs. Chrome and Safari [closed]
I'm having trouble debugging a cross browser compatibility issue. Specifically the issue is in Firefox where the slider isn't showing up in the proper place, it looks ok in Chrome and Safari.
Any ...
1
vote
2answers
61 views
Asynchronous playback of several <img> tags with same animated GIF
I have a lot of <img> tags on one HTML page some of whom share the same animated GIF file. The src URL is set dynamically by JavaScript but with my code the same characters are either played all ...
2
votes
1answer
25 views
Alternatives to SimpleTest's SimpleBrowser
I was working on and using Simple Browser from the Simple Test framework when I found out that I need to use CSS selectors to access some element.
Unfortunately, I discovered in the overview that it ...
0
votes
1answer
18 views
What is the difference between jQuery rails(2.2.1) and browser's jQuery(1.8.3)?
i am new to ruby on rails, i installed latest gem jQuery rails(2.2.1) but the browser jQuery version is 1.8.3 why it's different
0
votes
1answer
12 views
I am facing trouble while trying to record browser using NeoLoad
Hi I am new to performance testing. I am trying to record browser application but my phone is not getting connected, so i am not able to record the steps.
Could anyone help me out with the issue.
I am ...



