Index: /CKEditor/branches/features/aria/_source/lang/en.js
===================================================================
--- /CKEditor/branches/features/aria/_source/lang/en.js	(revision 4898)
+++ /CKEditor/branches/features/aria/_source/lang/en.js	(revision 4899)
@@ -475,4 +475,5 @@
 	elementsPath :
 	{
+		eleLabel : 'Elements path', 
 		eleTitle : '%1 element'
 	},
Index: /CKEditor/branches/features/aria/_source/plugins/elementspath/plugin.js
===================================================================
--- /CKEditor/branches/features/aria/_source/plugins/elementspath/plugin.js	(revision 4898)
+++ /CKEditor/branches/features/aria/_source/plugins/elementspath/plugin.js	(revision 4899)
@@ -1,3 +1,3 @@
-﻿/*
+/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -98,6 +98,8 @@
 								' onkeydown="return CKEDITOR._.elementsPath.keydown(\'', this.name, '\',', index, ', event);"' +
 								extra ,
-								' onclick="return CKEDITOR._.elementsPath.click(\'', this.name, '\',', index, ');">',
+								' onclick="return CKEDITOR._.elementsPath.click(\'', this.name, '\',', index, ');"',
+								' role="button" aria-labelledby="' + idBase + index + '_label">',
 									name,
+									'<span id="', idBase, index, '_label" class="cke_label">' + editor.lang.elementsPath.eleLabel + '</span>',
 							'</a>' );
 
Index: /CKEditor/branches/features/aria/_source/skins/kama/elementspath.css
===================================================================
--- /CKEditor/branches/features/aria/_source/skins/kama/elementspath.css	(revision 4898)
+++ /CKEditor/branches/features/aria/_source/skins/kama/elementspath.css	(revision 4899)
@@ -66,2 +66,7 @@
 	float: none;
 }
+
+.cke_skin_kama .cke_path .cke_label
+{
+	display:none;
+}
Index: /CKEditor/branches/features/aria/_source/skins/office2003/elementspath.css
===================================================================
--- /CKEditor/branches/features/aria/_source/skins/office2003/elementspath.css	(revision 4898)
+++ /CKEditor/branches/features/aria/_source/skins/office2003/elementspath.css	(revision 4899)
@@ -1,3 +1,3 @@
-﻿/*
+/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -67,2 +67,7 @@
 	float: none;
 }
+
+.cke_skin_office2003 .cke_path .cke_label
+{
+	display:none;
+}
Index: /CKEditor/branches/features/aria/_source/skins/v2/elementspath.css
===================================================================
--- /CKEditor/branches/features/aria/_source/skins/v2/elementspath.css	(revision 4898)
+++ /CKEditor/branches/features/aria/_source/skins/v2/elementspath.css	(revision 4899)
@@ -67,2 +67,7 @@
 	float: none;
 }
+
+.cke_skin_v2 .cke_path .cke_label
+{
+	display:none;
+}
