[Desktop-packages] [Bug 1434404] Re: Canvas path rendering bug

2015-04-21 Thread Basil Titovchenko
** Bug watch added: Mozilla Bugzilla #1157112
   https://bugzilla.mozilla.org/show_bug.cgi?id=1157112

** Also affects: firefox via
   https://bugzilla.mozilla.org/show_bug.cgi?id=1157112
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1434404

Title:
  Canvas path rendering bug

Status in The Mozilla Firefox Browser:
  Unknown
Status in firefox package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu: 14.04.2 LTS (32bit and 64bit versions)

  Firefox: Mozilla Firefox  for Ubuntu canonical - 1.0
  Installed: 36.0.1+build2-0ubuntu0.14.04.1

  I wrote the simple script to draw the circle composed by lines from it
  center. In Ubuntu Firefox I've got some weird looking artefacts, while
  in other OSes or browsers all seems to be ok (I've tested Firefox,
  Opera and Chrome in Windows, Chrome and Opera in Ubuntu).

  To reproduce:
  ---

  1. Open source file circle360.html in Firefox on Ubuntu;
  2. Expected to see the correctly drawin picture;
  3. Instead I see the picture with drawing artefacts (look at attached picture 
canvas-firefox.png)

  Source file: circle360.html
  -
  !DOCTYPE html
  html
  head
titleRay Circle/title
  /head
  body
  canvas height='640' width='640' id='example'You should update your 
browser./canvas
  script
  var example = document.getElementById(example),
  ctx = example.getContext('2d'),
PIdiv180 = Math.PI / 180,
size = 480;

  ctx.beginPath();
  for (var i = 0; i  360; i++) {
  ctx.moveTo(320, 320);
  ctx.lineTo(320 + Math.sin(i * PIdiv180) * 320, 320 + Math.cos(i * 
PIdiv180) * 320);
  }
  ctx.stroke();
  /script
  /body
  /html
  -

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/1434404/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1434404] [NEW] Canvas path rendering bug

2015-03-20 Thread Basil Titovchenko
Public bug reported:

Ubuntu: 14.04.2 LTS (32bit and 64bit versions)

Firefox: Mozilla Firefox  for Ubuntu canonical - 1.0
Installed: 36.0.1+build2-0ubuntu0.14.04.1

I wrote the simple script to draw the circle composed by lines from it
center. In Ubuntu Firefox I've got some weird looking artefacts, while
in other OSes or browsers all seems to be ok (I've tested Firefox, Opera
and Chrome in Windows, Chrome and Opera in Ubuntu).

To reproduce:
---

1. Open source file circle360.html in Firefox on Ubuntu;
2. Expected to see the correctly drawin picture;
3. Instead I see the picture with drawing artefacts (look at attached picture 
canvas-firefox.png)

Source file: circle360.html
-
!DOCTYPE html
html
head
  titleRay Circle/title
/head
body
canvas height='640' width='640' id='example'You should update your 
browser./canvas
script
var example = document.getElementById(example),
ctx = example.getContext('2d'),
PIdiv180 = Math.PI / 180,
size = 480;

ctx.beginPath();
for (var i = 0; i  360; i++) {
ctx.moveTo(320, 320);
ctx.lineTo(320 + Math.sin(i * PIdiv180) * 320, 320 + Math.cos(i * 
PIdiv180) * 320);
}
ctx.stroke();
/script
/body
/html
-

** Affects: firefox (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: canvas image path

** Attachment added: Drawing artefacts
   
https://bugs.launchpad.net/bugs/1434404/+attachment/4350542/+files/canvas-firefox.png

** Tags added: canvas

** Tags added: image path

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1434404

Title:
  Canvas path rendering bug

Status in firefox package in Ubuntu:
  New

Bug description:
  Ubuntu: 14.04.2 LTS (32bit and 64bit versions)

  Firefox: Mozilla Firefox  for Ubuntu canonical - 1.0
  Installed: 36.0.1+build2-0ubuntu0.14.04.1

  I wrote the simple script to draw the circle composed by lines from it
  center. In Ubuntu Firefox I've got some weird looking artefacts, while
  in other OSes or browsers all seems to be ok (I've tested Firefox,
  Opera and Chrome in Windows, Chrome and Opera in Ubuntu).

  To reproduce:
  ---

  1. Open source file circle360.html in Firefox on Ubuntu;
  2. Expected to see the correctly drawin picture;
  3. Instead I see the picture with drawing artefacts (look at attached picture 
canvas-firefox.png)

  Source file: circle360.html
  -
  !DOCTYPE html
  html
  head
titleRay Circle/title
  /head
  body
  canvas height='640' width='640' id='example'You should update your 
browser./canvas
  script
  var example = document.getElementById(example),
  ctx = example.getContext('2d'),
PIdiv180 = Math.PI / 180,
size = 480;

  ctx.beginPath();
  for (var i = 0; i  360; i++) {
  ctx.moveTo(320, 320);
  ctx.lineTo(320 + Math.sin(i * PIdiv180) * 320, 320 + Math.cos(i * 
PIdiv180) * 320);
  }
  ctx.stroke();
  /script
  /body
  /html
  -

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1434404/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1434404] Re: Canvas path rendering bug

2015-03-20 Thread Basil Titovchenko
** Attachment added: Image that should be (generated in Chrome)
   
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1434404/+attachment/4350547/+files/canvas-chrome.png

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1434404

Title:
  Canvas path rendering bug

Status in firefox package in Ubuntu:
  New

Bug description:
  Ubuntu: 14.04.2 LTS (32bit and 64bit versions)

  Firefox: Mozilla Firefox  for Ubuntu canonical - 1.0
  Installed: 36.0.1+build2-0ubuntu0.14.04.1

  I wrote the simple script to draw the circle composed by lines from it
  center. In Ubuntu Firefox I've got some weird looking artefacts, while
  in other OSes or browsers all seems to be ok (I've tested Firefox,
  Opera and Chrome in Windows, Chrome and Opera in Ubuntu).

  To reproduce:
  ---

  1. Open source file circle360.html in Firefox on Ubuntu;
  2. Expected to see the correctly drawin picture;
  3. Instead I see the picture with drawing artefacts (look at attached picture 
canvas-firefox.png)

  Source file: circle360.html
  -
  !DOCTYPE html
  html
  head
titleRay Circle/title
  /head
  body
  canvas height='640' width='640' id='example'You should update your 
browser./canvas
  script
  var example = document.getElementById(example),
  ctx = example.getContext('2d'),
PIdiv180 = Math.PI / 180,
size = 480;

  ctx.beginPath();
  for (var i = 0; i  360; i++) {
  ctx.moveTo(320, 320);
  ctx.lineTo(320 + Math.sin(i * PIdiv180) * 320, 320 + Math.cos(i * 
PIdiv180) * 320);
  }
  ctx.stroke();
  /script
  /body
  /html
  -

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1434404/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1434404] Re: Canvas path rendering bug

2015-03-20 Thread Basil Titovchenko
** Attachment added: Source HTML file
   
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1434404/+attachment/4350545/+files/circle360.html

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1434404

Title:
  Canvas path rendering bug

Status in firefox package in Ubuntu:
  New

Bug description:
  Ubuntu: 14.04.2 LTS (32bit and 64bit versions)

  Firefox: Mozilla Firefox  for Ubuntu canonical - 1.0
  Installed: 36.0.1+build2-0ubuntu0.14.04.1

  I wrote the simple script to draw the circle composed by lines from it
  center. In Ubuntu Firefox I've got some weird looking artefacts, while
  in other OSes or browsers all seems to be ok (I've tested Firefox,
  Opera and Chrome in Windows, Chrome and Opera in Ubuntu).

  To reproduce:
  ---

  1. Open source file circle360.html in Firefox on Ubuntu;
  2. Expected to see the correctly drawin picture;
  3. Instead I see the picture with drawing artefacts (look at attached picture 
canvas-firefox.png)

  Source file: circle360.html
  -
  !DOCTYPE html
  html
  head
titleRay Circle/title
  /head
  body
  canvas height='640' width='640' id='example'You should update your 
browser./canvas
  script
  var example = document.getElementById(example),
  ctx = example.getContext('2d'),
PIdiv180 = Math.PI / 180,
size = 480;

  ctx.beginPath();
  for (var i = 0; i  360; i++) {
  ctx.moveTo(320, 320);
  ctx.lineTo(320 + Math.sin(i * PIdiv180) * 320, 320 + Math.cos(i * 
PIdiv180) * 320);
  }
  ctx.stroke();
  /script
  /body
  /html
  -

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1434404/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1307116] Re: Caps Lock switches input source several times instead of just one

2014-05-17 Thread Basil Titovchenko
After clean Install of Ubuntu 14.04 and assigning Caps Lock as input
source switcher all was worked as intended. But after turning on On
Screen Keyboard bug striked back.

Just found a condition to repeat this bug (two or more input sources -
languages - must be configured in system):

1. Set Caps Lock as input source change button
2. At System Settings - Universal Access - Typing turn on On Screen 
Keyboard
3. Reboot
4. Now the On Screen Keyboard is on screen and pressing Caps Lock in text 
input field (gedit, for example) quickly changes input source several times.

After hiding keyboard from screen such behaviour remains until On Screen
Keyboard will be completely turned off in System Settings - Universal
Access.

** Description changed:

  Ubuntu 14.04 beta, upgraded April 12, 2014 from Ubuntu 13.10
  
  I have two input sources - English and Russian. I've set up Caps Lock
  key at Systems Settings-Text Entry-Switch to next source using. Now if
  I am pressing Caps Lock the source indicator quickly changes state as
  En-Ru-En-Ru-En (or Ru-En-Ru), so actually input source never
  changes. Using other keys (or combinations) to change input source works
  as intended, changes En to Ru and vice versa.
+ 
+ * Updated 2014.05.17:
+ 
+ After clean Install of Ubuntu 14.04 and assigning Caps Lock as input
+ source switcher all was worked as intended. But after turning on On
+ Screen Keyboard bug striked back.
+ 
+ Just found a condition to repeat this bug (two or more input sources -
+ languages - must be configured in system):
+ 
+ 1. Set Caps Lock as input source change button
+ 2. At System Settings - Universal Access - Typing turn on On Screen 
Keyboard
+ 3. Reboot
+ 4. Now the On Screen Keyboard is on screen and pressing Caps Lock in text 
input field (gedit, for example) quickly changes input source several times.
+ 
+ After hiding keyboard from screen such behaviour remains until On Screen
+ Keyboard will be completely turned off in System Settings - Universal
+ Access.

** Also affects: ubuntu-keyboard (Ubuntu)
   Importance: Undecided
   Status: New

** Description changed:

  Ubuntu 14.04 beta, upgraded April 12, 2014 from Ubuntu 13.10
  
  I have two input sources - English and Russian. I've set up Caps Lock
  key at Systems Settings-Text Entry-Switch to next source using. Now if
- I am pressing Caps Lock the source indicator quickly changes state as
- En-Ru-En-Ru-En (or Ru-En-Ru), so actually input source never
+ I am pressing Caps Lock the source indicator quickly changes its state
+ as En-Ru-En-Ru-En (or Ru-En-Ru), so actually input source never
  changes. Using other keys (or combinations) to change input source works
  as intended, changes En to Ru and vice versa.
  
  * Updated 2014.05.17:
  
  After clean Install of Ubuntu 14.04 and assigning Caps Lock as input
  source switcher all was worked as intended. But after turning on On
  Screen Keyboard bug striked back.
  
  Just found a condition to repeat this bug (two or more input sources -
  languages - must be configured in system):
  
  1. Set Caps Lock as input source change button
  2. At System Settings - Universal Access - Typing turn on On Screen 
Keyboard
  3. Reboot
  4. Now the On Screen Keyboard is on screen and pressing Caps Lock in text 
input field (gedit, for example) quickly changes input source several times.
  
  After hiding keyboard from screen such behaviour remains until On Screen
  Keyboard will be completely turned off in System Settings - Universal
  Access.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1307116

Title:
  Caps Lock  switches input source several times instead of just one

Status in “ubuntu-keyboard” package in Ubuntu:
  New
Status in “unity-settings-daemon” package in Ubuntu:
  New

Bug description:
  Ubuntu 14.04 beta, upgraded April 12, 2014 from Ubuntu 13.10

  I have two input sources - English and Russian. I've set up Caps
  Lock key at Systems Settings-Text Entry-Switch to next source
  using. Now if I am pressing Caps Lock the source indicator quickly
  changes its state as En-Ru-En-Ru-En (or Ru-En-Ru), so actually
  input source never changes. Using other keys (or combinations) to
  change input source works as intended, changes En to Ru and vice
  versa.

  * Updated 2014.05.17:

  After clean Install of Ubuntu 14.04 and assigning Caps Lock as input
  source switcher all was worked as intended. But after turning on On
  Screen Keyboard bug striked back.

  Just found a condition to repeat this bug (two or more input sources -
  languages - must be configured in system):

  1. Set Caps Lock as input source change button
  2. At System Settings - Universal Access - Typing turn on On Screen 
Keyboard
  3. Reboot
  4. Now the On Screen Keyboard is on screen and pressing Caps Lock in text 
input field (gedit, for example) quickly changes input source several times.

  

[Desktop-packages] [Bug 1307116] Re: Caps Lock switches input source several times instead of just one

2014-04-14 Thread Basil Titovchenko
I'm using standart Ubuntu 14.04 32-bit installation with Unity desktop
environment (it is by default, isn't it?). I understand that gnome-
settings-daemon is hardly responsible for above mentioned bug, but I
don't know exact name of appropriate package in Unity.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1307116

Title:
  Caps Lock  switches input source several times instead of just one

Status in “gnome-settings-daemon” package in Ubuntu:
  New

Bug description:
  Ubuntu 14.04 beta, upgraded April 12, 2014 from Ubuntu 13.10

  I have two input sources - English and Russian. I've set up Caps
  Lock key at Systems Settings-Text Entry-Switch to next source
  using. Now if I am pressing Caps Lock the source indicator quickly
  changes state as En-Ru-En-Ru-En (or Ru-En-Ru), so actually input
  source never changes. Using other keys (or combinations) to change
  input source works as intended, changes En to Ru and vice versa.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1307116/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1307116] Re: Caps Lock switches input source several times instead of just one

2014-04-14 Thread Basil Titovchenko
** Also affects: unity-settings-daemon (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: gnome-settings-daemon (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1307116

Title:
  Caps Lock  switches input source several times instead of just one

Status in “unity-settings-daemon” package in Ubuntu:
  New

Bug description:
  Ubuntu 14.04 beta, upgraded April 12, 2014 from Ubuntu 13.10

  I have two input sources - English and Russian. I've set up Caps
  Lock key at Systems Settings-Text Entry-Switch to next source
  using. Now if I am pressing Caps Lock the source indicator quickly
  changes state as En-Ru-En-Ru-En (or Ru-En-Ru), so actually input
  source never changes. Using other keys (or combinations) to change
  input source works as intended, changes En to Ru and vice versa.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-settings-daemon/+bug/1307116/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1307116] Re: Caps Lock switches input source several times instead of just one

2014-04-13 Thread Basil Titovchenko
I really don't know what package to blame, sorry.

** Package changed: ubuntu = gnome-settings-daemon (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1307116

Title:
  Caps Lock  switches input source several times instead of just one

Status in “gnome-settings-daemon” package in Ubuntu:
  New

Bug description:
  Ubuntu 14.04 beta, upgraded April 12, 2014 from Ubuntu 13.10

  I have two input sources - English and Russian. I've set up Caps
  Lock key at Systems Settings-Text Entry-Switch to next source
  using. Now if I am pressing Caps Lock the source indicator quickly
  changes state as En-Ru-En-Ru-En (or Ru-En-Ru), so actually input
  source never changes. Using other keys (or combinations) to change
  input source works as intended, changes En to Ru and vice versa.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1307116/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp