What would be better in Opera !

Subscribe to RSS feed

Posts tagged with "bug"

Opera bug with first letter and javascript

, , ,

Try the following code ; when the first-letter css pseudo-class is used, updating the text node does not update the first letter.
<html>
  <head>
  <style>
  p:first-letter{
    color:red;
    font-size:50px;
  }
  </style>
  </head>
  <body>
  <p id="p">L'image bleue.</p>
  <button onclick="document.getElementById('p').firstChild.nodeValue='The blue image.';return false;">Write "The blue image." using nodes</button>
  <button onclick="document.getElementById('p').innerHTML='The blue image.';return false;">Write "The blue image." using innerHtml</button>
  </body>
</html>

Printing with Opera under Linux

, , ,

I use a Xerox network printing but when I print something, it is always printed twice even though only one copy is asked !

Form and button with Opera

, , , ...

In a previous version of Opera, the following HTML code will throw the button assigned action when pressing Enter instead of sending the form.
Now, the button's action is first done then, the form is sent.
The behavior does not seem appropriate either : the button has nothing to do with actions performed neither on the input field nor on the form.

<form action="http://wwww.opera.com" method="post">
	<input type="text" name="name" />
	<button onclick="alert('clicked')">Click me !</button>
	<input type="submit" />
</form>

Flash paramaters (Opera 10.52)

, , ,

Sometimes, I can't quit the Flash parameters (opened by rightclicking on a Flash object) for example on a dailymotion video.
Flash plugin from "C:\Windows\SysWOW64\Macromed\Flash\NPSWF32.dll" (10.1.102.64).

How to disable Javascript for a specific website ? - shortcut issue

, , ,

I'm trying to disable Javascript for a particular website.
So I used the menu "Tools", "Quick Preferences", "Edit site preferences" and I disabled javascript for the website.
But javascript is automatically re-enabling itself when opening a new tab.
Maybe it's because I'm using a shortcut checkbox for controlling Javascript in my address bar.
I thought this checkbox would first check if javascript is activated to appeared checked or unchecked.
Actually, it seems to be always checked.

I removed this shortcut and the problem disappeared.

I think I will have to get rid of this wonderful shortcut ...



TO CREATE THIS SHORTCUT :
right-click on the tab bar (or address bar) -> Customize -> Appearance -> Buttons -> Preferences (Category)
then, drag and drop the check box "Enable JavaScript" in the address bar where you want it to appear (just before the address field for example).

Non viewable pages with Opera ?!

, , , ...

I experienced a little program browsing a page on this site : www.laltruiste.com. If I want to display a page about a category (left menu), I have a partly blank page. Why ?
Exemple of page I can't display (compare it with Firefox or IE) : http://www.laltruiste.com/document.php?page=1&rep=11.

Bug with GET method in Ajax requests on Opera.

, , , ...

Some of you may be searching for ajax examples. Don't be afraid asking questions !

I experienced a little problem with a request made through Ajax : all is a matter of cache control!

Using the GET method will not refresh the result whereas using POST method will. It depends on how your browser cache is configured. You can also add the header 'Cache-Control', 'no-cache' as shown in a comment hereafter.

Special thanks to dAEk and gdb for their enlightments.

Yves.