Here’s my interpretation of how Dijkstra’s algorithm as described by wikipedia would deal with the below graph.
First it marks the shortest distance to all neighbouring nodes, so A gets 1 and C gets 7. Then it picks the neighbour with the current shortest path. This is A. The origin is marked as visited and will not be considered again. The shortest (and only) path from the origin to B through A is now 12. A is marked as visited. The shortest path from the origin to the Destination through B is 13. B is marked as visited. The shortest path from the Origin to C through the destination is 14, but this is double the previous shortest path to C, which is 7, so the 14 is discarded. The destination is now marked as visited.
Destination has been marked visited, therefore the alogorithm is complete. Here’s the result:

So am I misinterpretting the description? Is the description on wikipedia wrong? Or have I somehow stumbled upon a case that shows Dijkstra’s algorithm is incorrect (which I highly doubt)? I’ve noticed that the path chosen seems to be picked in a greedy manner, but apparently this is one of the defining characteristics of the algorithm, however in this case it seems to give the wrong result.
Using your example:
Unvisited
Visited
For the current node, consider all of its unvisited neighbors and calculate their tentative distances.
We are now at A.
From A, the only path is B, this gives us
C is now lowest distance, and is the new current node
Since D is destination and 8 < 12, the route CD is chosen.